- Timestamp:
- Aug 14, 2015, 4:52:09 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/dll/copyf.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/copyf.c
r1803 r1849 43 43 02 May 15 GKY Changes to R/O check to eliminate redundant checks and error messages 44 44 02 May 15 GKY Limit unlock attempts to exes and dlls. 45 12 Aug 15 JBS Ticket #522: Ensure no "highmem-unsafe" functions are called directly. 46 Calls to unsafe Dos... functions have been changed to call the wrapped xDos... functions 45 47 46 48 ***********************************************************************/ … … 551 553 552 554 DosError(FERR_DISABLEHARDERR); 553 error = DosForceDelete(dir);555 error = xDosForceDelete(dir); 554 556 if (error) { 555 557 make_deleteable(dir, error, TRUE); 556 DosForceDelete(dir);558 xDosForceDelete(dir); 557 559 } 558 560 if (zaplong) { … … 842 844 843 845 DosError(FERR_DISABLEHARDERR); 844 error = DosForceDelete(ss);846 error = xDosForceDelete(ss); 845 847 if (error) { 846 848 INT retrn = 0; … … 854 856 break; 855 857 DosError(FERR_DISABLEHARDERR); 856 rc = (INT) DosForceDelete(ss);858 rc = (INT) xDosForceDelete(ss); 857 859 if (rc) 858 860 return rc; … … 966 968 967 969 DosError(FERR_DISABLEHARDERR); 968 error = DosForceDelete(string);970 error = xDosForceDelete(string); 969 971 if (error) { 970 972 ret = make_deleteable(string, error, FALSE); … … 972 974 return 0; 973 975 DosError(FERR_DISABLEHARDERR); 974 return DosForceDelete(string);976 return xDosForceDelete(string); 975 977 } 976 978 }
Note:
See TracChangeset
for help on using the changeset viewer.
