Changeset 9539 for trunk/ippTools/src
- Timestamp:
- Oct 13, 2006, 11:22:09 AM (20 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 5 edited
-
chiptool.c (modified) (2 diffs)
-
dettool.c (modified) (1 diff)
-
pzgetexp.c (modified) (1 diff)
-
pzgetimfiles.c (modified) (1 diff)
-
pztool.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/chiptool.c
r9392 r9539 113 113 if (strcmp(rawFrame->exposure->exp_tag, 114 114 pendingFrame->exposure->exp_tag) == 0) { 115 psArrayRemove (rawFrames, rawFrame);115 psArrayRemoveData(rawFrames, rawFrame); 116 116 // dec the counter as the array just got shorter 117 117 // and we don't want to skip elemnts … … 132 132 if (strcmp(rawFrame->exposure->exp_tag, 133 133 doneFrame->exposure->exp_tag) == 0) { 134 psArrayRemove (rawFrames, rawFrame);134 psArrayRemoveData(rawFrames, rawFrame); 135 135 // dec the counter as the array just got shorter 136 136 // and we don't want to skip elemnts -
trunk/ippTools/src/dettool.c
r9494 r9539 387 387 return false; 388 388 } 389 psMetadataRemove (md, 0, "det_id");389 psMetadataRemoveKey(md, "det_id"); 390 390 psString det_idStr = psDBIntToString((psU64)det_id); 391 391 psMetadataAddStr(mds->data[i], PS_LIST_HEAD, "det_id", 0, NULL, det_idStr); -
trunk/ippTools/src/pzgetexp.c
r9392 r9539 94 94 if (strcmp(newSummitExp->exp_id, 95 95 summitExp->exp_id) == 0) { 96 psArrayRemove (newSummitExps, newSummitExp);96 psArrayRemoveData(newSummitExps, newSummitExp); 97 97 // dec the counter as the array just got shorter 98 98 // and we don't want to skip elemnts -
trunk/ippTools/src/pzgetimfiles.c
r9392 r9539 83 83 if (strcmp(newImfile->exp_id, 84 84 pendingImfile->exp_id) == 0) { 85 psArrayRemove (newImfiles, newImfile);85 psArrayRemoveData(newImfiles, newImfile); 86 86 // dec the counter as the array just got shorter 87 87 // and we don't want to skip elemnts -
trunk/ippTools/src/pztool.c
r9392 r9539 97 97 newExpRow *newExp = new->data[j]; 98 98 if (strcmp(summitExp->exp_id, newExp->exp_id) == 0) { 99 psArrayRemove (summit, summitExp);99 psArrayRemoveData(summit, summitExp); 100 100 // dec the counter as the array just got shorter 101 101 //and we don't want to skip elemnts
Note:
See TracChangeset
for help on using the changeset viewer.
