Changeset 1846 for trunk/dll/cmdline.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/cmdline.c

    r1750 r1846  
    3030  23 Oct 10 GKY Changes to populate and utilize a HELPTABLE for context specific help
    3131  28 Apr 14 JBS Ticket #522: Ensure use of wrapper functions where needed
     32  12 Aug 15 JBS Ticket #524: Ensure no "highmem-unsafe" functions are called directly
     33                Calls to unsafe Dos... functions have been changed to call the wrapped xDos... functions
    3234
    3335***********************************************************************/
     
    405407    {
    406408      ULONG apptype = 0L;
    407       // Change DosQueryAppType to xDosQueryAppType if "executable"is no longer local
    408409      CHAR executable[CCHMAXPATH], commandline[1001], *p;
    409410
     
    449450        }
    450451      }
    451       if (DosQueryAppType(executable, &apptype) ||
     452      if (xDosQueryAppType(executable, &apptype) ||
    452453          (apptype && !(apptype &
    453454                        (FAPPTYP_NOTWINDOWCOMPAT |
Note: See TracChangeset for help on using the changeset viewer.