IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35265 for trunk/Ohana


Ignore:
Timestamp:
Mar 7, 2013, 11:27:15 AM (13 years ago)
Author:
eugene
Message:

fixed apparently (but not really) un-inited value

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/delstar/src/delete_duplicate_images.c

    r35243 r35265  
    490490IndexArray *make_index_array (Image *image, off_t Nimage, int mode) {
    491491
    492   off_t i, value;
     492  off_t i;
    493493
    494494  IndexArray *idxarray = NULL;
     
    498498  idxarray->maxID = -1;
    499499  for (i = 0; i < Nimage; i++) {
     500    off_t value = 0;
    500501    if (mode == EXTERN_ID) {
    501502      value = image[i].externID;
Note: See TracChangeset for help on using the changeset viewer.