IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 17636


Ignore:
Timestamp:
May 12, 2008, 11:57:24 AM (18 years ago)
Author:
Paul Price
Message:

Missed one.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackLoop.c

    r17627 r17636  
    583583            for (int i = 0; i < num && more; i++) {
    584584                pmReadout *readout = readouts->data[i];
    585                 assert(readout);
     585                if (!readout) {
     586                    continue;
     587                }
    586588                more &= pmReadoutMore(readout, imageFits->data[i], 0, numScans);
    587589                more &= pmReadoutMoreMask(readout, maskFits->data[i], 0, numScans);
     
    593595        for (int i = 0; i < readouts->n; i++) {
    594596            pmReadout *ro = readouts->data[i]; // Readout of interest
     597            if (!ro) {
     598                continue;
     599            }
    595600            pmReadoutFreeData(ro);
    596601        }
Note: See TracChangeset for help on using the changeset viewer.