Changeset 1850 for trunk/dll/arccnrs.c


Ignore:
Timestamp:
Aug 14, 2015, 7:41:37 PM (10 years ago)
Author:
John Small
Message:

Corrected some missing changes from Dos... to xDos... in previous commit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/arccnrs.c

    r1846 r1850  
    106106  06 Apr 14 GKY Removed all BZ/GZ checks
    107107  28 Jun 14 GKY Fix errors identified with CPPCheck; Fix retry to create workdir code
    108   12 Aug 15 JBS Ticket #524: Ensure no "highmem-unsafe" functions are called directly
    109                 Calls to unsafe Dos... functions have been changed to call the wrapped xDos... functions
     108  12 Aug 15 JBS Ticket #522: Ensure no "highmem-unsafe" functions are called directly.
     109                Calls to unsafe Dos... functions have been changed to call the wrapped xDos... functions.
    110110
    111111***********************************************************************/
     
    652652
    653653    DosError(FERR_DISABLEHARDERR);
    654     DosForceDelete(arctemp);
     654    xDosForceDelete(arctemp);
    655655    DosError(FERR_DISABLEHARDERR);
    656656
     
    684684        newstdout = -1;
    685685        DosError(FERR_DISABLEHARDERR);
    686         rc = DosDupHandle(fileno(stdout), &newstdout);
     686        rc = xDosDupHandle(fileno(stdout), &newstdout);
    687687        if (rc) {
    688688          Dos_Error(MB_CANCEL, rc, hwndCnr, pszSrcFile, __LINE__,
     
    694694          oldstdout = fileno(stdout);
    695695          DosError(FERR_DISABLEHARDERR);
    696           rc = DosDupHandle(fileno(fp), &oldstdout);
     696          rc = xDosDupHandle(fileno(fp), &oldstdout);
    697697          if (rc) {
    698698            Dos_Error(MB_CANCEL, rc, hwndCnr, pszSrcFile, __LINE__,
     
    727727            oldstdout = fileno(stdout);
    728728            DosError(FERR_DISABLEHARDERR);
    729             DosDupHandle(newstdout, &oldstdout);
     729            xDosDupHandle(newstdout, &oldstdout);
    730730            DosClose(newstdout);
    731731            fclose(fp);
Note: See TracChangeset for help on using the changeset viewer.