Changeset 17009 for trunk/psModules/src/camera/pmReadoutStack.c
- Timestamp:
- Mar 17, 2008, 11:56:10 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmReadoutStack.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmReadoutStack.c
r16680 r17009 96 96 pmReadout *readout = inputs->data[i]; // Readout of interest 97 97 98 if (!readout || !readout->image) { 99 psError(PS_ERR_UNEXPECTED_NULL, true, "Input readout %ld is NULL or has NULL image.\n", i); 98 if (!readout) { 99 continue; 100 } 101 if (!readout->image) { 102 psError(PS_ERR_UNEXPECTED_NULL, true, "Input readout %ld has NULL image.\n", i); 100 103 return false; 101 104 }
Note:
See TracChangeset
for help on using the changeset viewer.
