Changeset 1480 for trunk/dll/systemf.c


Ignore:
Timestamp:
Nov 22, 2009, 11:58:49 PM (16 years ago)
Author:
Gregg Young
Message:

Fix failure to correctly check for large file support in FindSwapperDat fall back code minor streamling. Add LVM.EXE to partition submenu. Stop using xDosQueryAppType where the file name it is passed is already a local stack variable. Correct a typo in several file header comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/systemf.c

    r1475 r1480  
    688688# define TERMQ_BASE_NAME "\\QUEUES\\FM3WAIT"
    689689  static char szTermQName[30];
     690  char szTermTemp[30];
    690691  static HQUEUE hTermQ;
    691692  static HEV hTermQSem;
     
    10761077        useTermQ = FALSE;
    10771078      else {
    1078 # ifdef HIMEM
    1079         useTermQ = FALSE;
    1080 # else
    10811079        rc = 0;
    10821080        DosEnterCritSec();
     
    11051103        if (!rc)
    11061104          DosExitCritSec();
    1107 # endif
    11081105      } // if wait
    11091106
     
    11171114      if (*pszArgs)
    11181115        sdata.PgmInputs = (PBYTE)pszArgs;
    1119       if (useTermQ)
    1120         sdata.TermQ = (PBYTE)szTermQName;
     1116      if (useTermQ) {
     1117        strcpy(szTermTemp, szTermQName);
     1118        sdata.TermQ = (PBYTE)szTermTemp;
     1119      }
    11211120      sdata.Environment = (PBYTE)pszEnvironment;
    11221121      sdata.InheritOpt = SSF_INHERTOPT_PARENT;
Note: See TracChangeset for help on using the changeset viewer.