Changeset 1850 for trunk/dll/arccnrs.c
- Timestamp:
- Aug 14, 2015, 7:41:37 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/arccnrs.c
r1846 r1850 106 106 06 Apr 14 GKY Removed all BZ/GZ checks 107 107 28 Jun 14 GKY Fix errors identified with CPPCheck; Fix retry to create workdir code 108 12 Aug 15 JBS Ticket #52 4: Ensure no "highmem-unsafe" functions are called directly109 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. 110 110 111 111 ***********************************************************************/ … … 652 652 653 653 DosError(FERR_DISABLEHARDERR); 654 DosForceDelete(arctemp);654 xDosForceDelete(arctemp); 655 655 DosError(FERR_DISABLEHARDERR); 656 656 … … 684 684 newstdout = -1; 685 685 DosError(FERR_DISABLEHARDERR); 686 rc = DosDupHandle(fileno(stdout), &newstdout);686 rc = xDosDupHandle(fileno(stdout), &newstdout); 687 687 if (rc) { 688 688 Dos_Error(MB_CANCEL, rc, hwndCnr, pszSrcFile, __LINE__, … … 694 694 oldstdout = fileno(stdout); 695 695 DosError(FERR_DISABLEHARDERR); 696 rc = DosDupHandle(fileno(fp), &oldstdout);696 rc = xDosDupHandle(fileno(fp), &oldstdout); 697 697 if (rc) { 698 698 Dos_Error(MB_CANCEL, rc, hwndCnr, pszSrcFile, __LINE__, … … 727 727 oldstdout = fileno(stdout); 728 728 DosError(FERR_DISABLEHARDERR); 729 DosDupHandle(newstdout, &oldstdout);729 xDosDupHandle(newstdout, &oldstdout); 730 730 DosClose(newstdout); 731 731 fclose(fp);
Note:
See TracChangeset
for help on using the changeset viewer.