Changeset 850 for trunk/dll/grep.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
  • trunk/dll/grep.c

    r848 r850  
    462462  PSZ p;
    463463  APIRET rc;
    464   ULONG ulBufBytes = FilesToGet * sizeof(FILEFINDBUF4);
     464  // 06 Oct 07 SHL Correct size for xDosFindFirst
     465  ULONG ulBufBytes = FilesToGet * sizeof(FILEFINDBUF4L);
    465466  static BOOL fDone;
    466467
     
    536537      DosSleep(0); //26 Aug 07 GKY 1
    537538      ulFindCnt = FilesToGet;
    538       rc = xDosFindNext(findHandle, pffbArray, ulBufBytes, &ulFindCnt);
     539      rc = xDosFindNext(findHandle, pffbArray, ulBufBytes, &ulFindCnt, FIL_QUERYEASIZEL);
    539540    } while (!rc);
    540541
Note: See TracChangeset for help on using the changeset viewer.