Changeset 827 for trunk/dll/subj.c


Ignore:
Timestamp:
Sep 2, 2007, 8:32:14 PM (18 years ago)
Author:
Steven Levine
Message:

Future proof xDosSetPathInfo
Clean up callers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/subj.c

    r826 r827  
    1313  06 Aug 07 GKY Increase Subject EA to 1024
    1414  20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat
    15   01 Sep 07 GKY Add xDosSetPathInfo to fix case where FS3 buffer crosses 64k boundry
     15  01 Sep 07 GKY Use xDosSetPathInfo to fix case where FS3 buffer crosses 64k boundry
    1616
    1717***********************************************************************/
     
    136136        eaop.fpGEA2List = (PGEA2LIST) 0;
    137137        eaop.fpFEA2List = pfealist;
    138         eaop.oError = 0L;
    139         rc = xDosSetPathInfo(filename, FIL_QUERYEASIZE, (PVOID) & eaop,
    140                              (ULONG) sizeof(EAOP2), DSPI_WRTTHRU);
     138        eaop.oError = 0;
     139        rc = xDosSetPathInfo(filename, FIL_QUERYEASIZE,
     140                             &eaop, sizeof(eaop), DSPI_WRTTHRU);
    141141        DosFreeMem(pfealist);
    142142        if (rc) {
Note: See TracChangeset for help on using the changeset viewer.