Changeset 17636
- Timestamp:
- May 12, 2008, 11:57:24 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ppStack/src/ppStackLoop.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppStack/src/ppStackLoop.c
r17627 r17636 583 583 for (int i = 0; i < num && more; i++) { 584 584 pmReadout *readout = readouts->data[i]; 585 assert(readout); 585 if (!readout) { 586 continue; 587 } 586 588 more &= pmReadoutMore(readout, imageFits->data[i], 0, numScans); 587 589 more &= pmReadoutMoreMask(readout, maskFits->data[i], 0, numScans); … … 593 595 for (int i = 0; i < readouts->n; i++) { 594 596 pmReadout *ro = readouts->data[i]; // Readout of interest 597 if (!ro) { 598 continue; 599 } 595 600 pmReadoutFreeData(ro); 596 601 }
Note:
See TracChangeset
for help on using the changeset viewer.
