IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16201 for trunk/ippTools/src


Ignore:
Timestamp:
Jan 23, 2008, 11:28:27 AM (18 years ago)
Author:
eugene
Message:

check for end_stage is NULL before using

File:
1 edited

Legend:

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

    r16170 r16201  
    634634
    635635        // should we stop here or proceed on to the cam stage?
    636         if (psStrcasestr(chipRun->end_stage, "chip")) {
     636        // NULL for end_stage means go as far as possible
     637        if (chipRun->end_stage && psStrcasestr(chipRun->end_stage, "chip")) {
    637638            psFree(chipRun);
    638639            continue;
Note: See TracChangeset for help on using the changeset viewer.