Changeset 850 for trunk/dll/comp.c


Ignore:
Timestamp:
Oct 7, 2007, 4:50:15 AM (18 years ago)
Author:
Steven Levine
Message:

Rework large file support wrappers (ticket #41)
Add code to avoid NTFS driver small file read defect (ticket #159)
Add debug code to try to catch David's drive bar exception
Another attempt to correct newview fast viewer text load failure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/comp.c

    r847 r850  
    145145          }
    146146          ulFindCnt = 1;
    147         } while (!xDosFindNext(hdir, pffb, sizeof(FILEFINDBUF4L), &ulFindCnt));
     147        } while (!xDosFindNext(hdir, pffb, sizeof(FILEFINDBUF4L), &ulFindCnt, FIL_QUERYEASIZEL));
    148148        DosFindClose(hdir);
    149149      }
     
    816816      DosError(FERR_DISABLEHARDERR);
    817817      ulFindCnt = FilesToGet;
    818       rc = xDosFindNext(hDir, pffbArray, ulBufBytes, &ulFindCnt);
     818      rc = xDosFindNext(hDir, pffbArray, ulBufBytes, &ulFindCnt, FIL_QUERYEASIZEL);
    819819    } while (!rc);
    820820
Note: See TracChangeset for help on using the changeset viewer.