Changeset 6157 for trunk/ippTools/src/p2searchPendingFrames.c
- Timestamp:
- Jan 21, 2006, 7:16:02 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/p2searchPendingFrames.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/p2searchPendingFrames.c
r6156 r6157 5 5 PS_ASSERT_PTR_NON_NULL(config, NULL); 6 6 7 // build 'where' structure8 7 psMetadata *where = psMetadataAlloc(); 9 8 10 // in order to include these restrictions, we need to define these table columns11 9 if (config->camera_name != NULL) { 12 10 psMetadataAddStr(where, PS_LIST_TAIL, "camera", 0, "==", … … 37 35 } 38 36 */ 37 38 // if no search criteria were added then set where to NULL to search for 39 // everything 40 // XXX fix handling of where 41 if (where->list->n < 1) { 42 psFree(where); 43 where = NULL; 44 } 39 45 40 46 psArray *exposures = p2PendingExpSelectRowObjects(config->database, where, MAX_ROWS);
Note:
See TracChangeset
for help on using the changeset viewer.
