IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 30, 2010, 9:31:50 AM (16 years ago)
Author:
eugene
Message:

updates from trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20100621/ppTranslate/src/ppMops.c

    r28212 r28794  
    2020    }
    2121
    22     if (!ppMopsPurgeDuplicates(detections)) {
     22    ppMopsDetections *merged = ppMopsMerge(detections); // Merged detections
     23    psFree(detections);
     24    if (!merged) {
    2325        psErrorStackPrint(stderr, "Unable to merge detections");
    2426        exit(PS_EXIT_SYS_ERROR);
    2527    }
    2628
    27     if (!ppMopsWrite(detections, args)) {
     29    if (!ppMopsWrite(merged, args)) {
    2830        psErrorStackPrint(stderr, "Unable to write detections");
    2931        exit(PS_EXIT_SYS_ERROR);
    3032    }
    3133
    32     psFree(detections);
     34    psFree(merged);
    3335    psFree(args);
    3436
Note: See TracChangeset for help on using the changeset viewer.