Changeset 17219 for trunk/ippTools/src/warptool.c
- Timestamp:
- Mar 28, 2008, 4:21:20 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/warptool.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/warptool.c
r17180 r17219 256 256 PXOPT_COPY_F32(config->args, where, "-solang_max", "solang", "<"); 257 257 258 if (!psListLength(where->list)) { 258 if (!psListLength(where->list) 259 && !psMetadataLookupBool(NULL, config->args, "-all")) { 259 260 psFree(where); 261 where = NULL; 260 262 psError(PXTOOLS_ERR_DATA, false, "search parameters are required"); 261 263 return false; … … 267 269 if ((!state) && (!label)) { 268 270 psError(PXTOOLS_ERR_DATA, false, "parameters are required"); 271 psFree(where); 269 272 return false; 270 273 } … … 273 276 // set chipRun.state to state 274 277 if (!pxwarpRunSetStateByQuery(config, where, state)) { 278 psFree(where); 275 279 return false; 276 280 } … … 280 284 // set chipRun.label to label 281 285 if (!pxwarpRunSetLabelByQuery(config, where, label)) { 282 return false; 283 } 284 } 286 psFree(where); 287 return false; 288 } 289 } 290 291 psFree(where); 285 292 286 293 return true;
Note:
See TracChangeset
for help on using the changeset viewer.
