Changeset 28484 for branches/pap/ppTranslate/src/ppMops.c
- Timestamp:
- Jun 24, 2010, 2:59:09 PM (16 years ago)
- Location:
- branches/pap
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ppTranslate/src/ppMops.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap
- Property svn:mergeinfo changed
-
branches/pap/ppTranslate/src/ppMops.c
r25256 r28484 20 20 } 21 21 22 ppMopsDetections *merged = ppMopsMerge(detections); // Merged detections 23 psFree(detections); 24 if (!merged) { 22 if (!ppMopsPurgeDuplicates(detections)) { 25 23 psErrorStackPrint(stderr, "Unable to merge detections"); 26 24 exit(PS_EXIT_SYS_ERROR); 27 25 } 28 26 29 if (!ppMopsWrite( merged, args)) {27 if (!ppMopsWrite(detections, args)) { 30 28 psErrorStackPrint(stderr, "Unable to write detections"); 31 29 exit(PS_EXIT_SYS_ERROR); 32 30 } 33 31 34 psFree( merged);32 psFree(detections); 35 33 psFree(args); 36 34
Note:
See TracChangeset
for help on using the changeset viewer.
