- Timestamp:
- Dec 6, 2012, 6:32:19 PM (14 years ago)
- Location:
- branches/czw_branch/20120906/Ohana
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/dvomerge/src/dvomergeHistory.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/czw_branch/20120906/Ohana
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20120905/Ohana (added) merged: 34423-34428,34468,34490,34494-34495,34508,34517-34526,34529,34562-34563,34569,34572-34573,34575,34616-34619
- Property svn:mergeinfo changed
-
branches/czw_branch/20120906/Ohana/src/dvomerge/src/dvomergeHistory.c
r34405 r34772 132 132 int stat_result = stat (filename, &outstats); 133 133 if (stat_result) { 134 if (errno == ENOENT) return NULL; 134 if (errno == ENOENT) { 135 dmhObject *history = NULL; 136 ALLOCATE (history, dmhObject, 1); 137 history->Nmerge = 0; 138 139 // ALLOCATE full list 140 ALLOCATE (history->size, off_t, history->Nmerge); 141 ALLOCATE (history->time, time_t, history->Nmerge); 142 ALLOCATE (history->date, char *, history->Nmerge); 143 return history; 144 } 135 145 fprintf (stderr, "cannot read stats on output file %s\n", filename); 136 146 perror ("stats error message:");
Note:
See TracChangeset
for help on using the changeset viewer.
