Changeset 404 for trunk/dll/avv.c
- Timestamp:
- Jul 29, 2006, 10:01:14 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/dll/avv.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/avv.c
r347 r404 18 18 26 Jun 06 SHL rewrite_archiverbb2: include user comments 19 19 14 Jul 06 SHL Use Runtime_Error 20 29 Jul 06 SHL Use xfgets 20 21 21 22 ***********************************************************************/ … … 240 241 needReload = TRUE; 241 242 while (input_line_num < arcsigs_header_lines) { 242 psz = fgets(sz, sizeof(sz), fpOld);243 psz = xfgets(sz, sizeof(sz), fpOld, pszSrcFile, __LINE__); 243 244 if (!psz) 244 245 break; … … 265 266 } 266 267 while (input_line_num + 1 < pat -> defn_line_num) { 267 psz = fgets(sz, sizeof(sz), fpOld);268 psz = xfgets(sz, sizeof(sz), fpOld, pszSrcFile, __LINE__); 268 269 if (!psz) 269 270 break; // Unexpected EOF … … 341 342 if (fpOld && arcsigs_trailer_line_num) { 342 343 for (;;) { 343 psz = fgets(sz, sizeof(sz), fpOld);344 psz = xfgets(sz, sizeof(sz), fpOld, pszSrcFile, __LINE__); 344 345 if (!psz) 345 346 break; … … 590 591 else { 591 592 while(!feof(fp)) { 592 if(!fgets(s,sizeof(s),fp)) break; 593 if (!xfgets(s, sizeof(s), fp, pszSrcFile, __LINE__)) 594 break; 593 595 stripcr(s); 594 596 WinSendDlgItemMsg(hwnd,
Note:
See TracChangeset
for help on using the changeset viewer.
