Changeset 23798
- Timestamp:
- 09/20/13 10:12:50 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/filelist.h
r23794 r23798 114 114 115 115 rpath = realpath(tmpstr, NULL); 116 t1 = getfiletime(rpath, 2);116 t1 = getfiletime(rpath, 1); 117 117 free(tmpstr); tmpstr = NULL; 118 118 free(rpath); rpath = NULL; … … 122 122 123 123 rpath = realpath(tmpstr, NULL); 124 t2 = getfiletime(rpath, 2);124 t2 = getfiletime(rpath, 1); 125 125 free(tmpstr); tmpstr = NULL; 126 126 free(rpath); rpath = NULL; … … 141 141 142 142 rpath = realpath(tmpstr, NULL); 143 t1 = getfiletime(rpath, 2);143 t1 = getfiletime(rpath, 1); 144 144 free(tmpstr); tmpstr = NULL; 145 145 free(rpath); rpath = NULL; … … 149 149 150 150 rpath = realpath(tmpstr, NULL); 151 t2 = getfiletime(rpath, 2);151 t2 = getfiletime(rpath, 1); 152 152 free(tmpstr); tmpstr = NULL; 153 153 free(rpath); rpath = NULL; … … 438 438 rpath = realpath(tmpstr, NULL); 439 439 if(view == 4) child->filelist->size = getfilesize(rpath); 440 else if(view == 5) child->filelist->date = getfiletime(rpath, 2);440 else if(view == 5) child->filelist->date = getfiletime(rpath, 1); 441 441 free(rpath); rpath = NULL; 442 442 free(tmpstr); tmpstr = NULL; … … 677 677 rpath = realpath(tmpstr, NULL); 678 678 if(view == 4) child->filelist->size = getfilesize(rpath); 679 else if(view == 5) child->filelist->date = getfiletime(rpath, 2);679 else if(view == 5) child->filelist->date = getfiletime(rpath, 1); 680 680 free(rpath); rpath = NULL; 681 681 free(tmpstr); tmpstr = NULL;
Note: See TracChangeset
for help on using the changeset viewer.