IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26335


Ignore:
Timestamp:
Dec 4, 2009, 12:07:53 PM (16 years ago)
Author:
bills
Message:

in -addprocessedexp mode, move check for "cam" in end_stage until
after we set the run to full.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/camtool.c

    r26113 r26335  
    603603    }
    604604
    605     // NULL for end_stage means go as far as possible
    606     // EAM : skip here if fault != 0
    607     // Also, we can run fake even if tess_id is not defined
    608     if (fault || (pendingRow->end_stage && psStrcasestr(pendingRow->end_stage, "cam"))) {
     605    if (fault) {
    609606        psFree(row);
    610607        psFree(pendingRow);
     
    625622    }
    626623    psFree(row);
     624
     625    // EAM:  NULL for end_stage means go as far as possible
     626    // Also, we can run fake even if tess_id is not defined
     627    if (pendingRow->end_stage && psStrcasestr(pendingRow->end_stage, "cam")) {
     628        psFree(pendingRow);
     629        return true;
     630    }
    627631
    628632    if (!pxfakeQueueByCamID(config,
Note: See TracChangeset for help on using the changeset viewer.