Changeset 7838 for trunk/ppFringe/src/ppFringeLoop.c
- Timestamp:
- Jul 6, 2006, 5:42:53 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ppFringe/src/ppFringeLoop.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppFringe/src/ppFringeLoop.c
r7826 r7838 29 29 if (!pmCellRead(cell, data->inFile, config->database)) { 30 30 psLogMsg(__func__, PS_LOG_WARN, "Unable to read chip %s cell %s\n", chipName, cellName); 31 pmCellFreeData(cell); 31 32 continue; 32 33 } … … 34 35 psArray *readouts = cell->readouts; // Array of component readouts 35 36 if (readouts->n == 0) { 37 pmCellFreeData(cell); 36 38 continue; 37 39 } … … 44 46 psLogMsg(__func__, PS_LOG_WARN, "No image associated with readout in chip %s cell %s --- " 45 47 "ignored.\n", chipName, cellName); 48 pmCellFreeData(cell); 46 49 continue; 47 50 } … … 54 57 "ignored.\n", chipName, cellName); 55 58 psFree(regions); 59 pmCellFreeData(cell); 56 60 continue; 57 61 } … … 63 67 "ignored.\n", chipName, cellName); 64 68 psFree(regions); 69 pmCellFreeData(cell); 65 70 continue; 66 71 } … … 74 79 psFree(regions); 75 80 psFree(fringeStats); 81 pmCellFreeData(cell); 76 82 continue; 77 83 } 84 85 psFree(regions); 86 psFree(fringeStats); 87 pmCellFreeData(cell); 78 88 } 89 pmChipFreeData(chip); 79 90 } 80 91 pmFPAFreeData(fpa); 81 92 }
Note:
See TracChangeset
for help on using the changeset viewer.
