Changeset 2525
- Timestamp:
- 09/23/07 15:41:17 (1 year ago)
- Files:
-
- trunk/opensync/client/opensync_client_proxy.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/opensync/client/opensync_client_proxy.c
r2511 r2525 838 838 pid_t cpid = fork(); 839 839 if (cpid == 0) { 840 841 /* close the read and write ends of the pipes */ 842 osync_queue_disconnect(write1, error); 843 osync_queue_disconnect(read2, error); 844 840 845 osync_trace_reset_indent(); 841 846 … … 856 861 osync_trace(TRACE_INTERNAL, "unable to exec"); 857 862 exit(1); 863 } else { 864 /* close the read and write ends of the pipes */ 865 osync_queue_disconnect(write2, error); 866 osync_queue_disconnect(read1, error); 858 867 } 859 868
