Changeset 1846 for trunk/dll/seeall.c


Ignore:
Timestamp:
Aug 12, 2015, 10:31:54 PM (10 years ago)
Author:
John Small
Message:

Ticket #524: Ensure no "highmem-unsafe" functions are called directly
Calls to unsafe Dos... functions have been changed to call the wrapped xDos... functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/seeall.c

    r1803 r1846  
    6464  02 May 15 GKY Changes to allow a JAVA executable object to be created using "Real object"
    6565                menu item on a jar file.
     66  12 Aug 15 JBS Ticket #524: Ensure no "highmem-unsafe" functions are called directly
     67                Calls to unsafe Dos... functions have been changed to call the wrapped xDos... functions
    6668
    6769***********************************************************************/
     
    10981100                error = DosDelete(list[x]);
    10991101              else
    1100                 error = DosForceDelete(list[x]);
     1102                error = xDosForceDelete(list[x]);
    11011103              if (error) {
    11021104                DosError(FERR_DISABLEHARDERR);
     
    11111113                  error = DosDelete(list[x]);
    11121114                else
    1113                   error = DosForceDelete(list[x]);
     1115                  error = xDosForceDelete(list[x]);
    11141116              }
    11151117            }
Note: See TracChangeset for help on using the changeset viewer.