Changeset 1627 for trunk/dll/subj.c
- Timestamp:
- Aug 26, 2011, 11:48:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/subj.c
r1480 r1627 16 16 08 Mar 09 GKY Additional strings move to PCSZs 17 17 12 Jul 09 GKY Add xDosQueryAppType and xDosAlloc... to allow FM/2 to load in high memory 18 26 Aug 11 GKY Add a low mem version of xDosAlloc* wrappers; move error checking into all the 19 xDosAlloc* wrappers. 18 20 19 21 ***********************************************************************/ … … 126 128 else 127 129 ealen = sizeof(FEALIST) + 9; 128 rc = xDosAllocMem((PPVOID) & pfealist, ealen + 1L, 129 PAG_COMMIT | PAG_READ | PAG_WRITE, pszSrcFile, __LINE__); 130 if (rc) 131 Dos_Error(MB_CANCEL, rc, hwnd, pszSrcFile, __LINE__, 132 GetPString(IDS_OUTOFMEMORY)); 133 else { 130 if (!xDosAllocMem((PPVOID) & pfealist, ealen + 1L, 131 PAG_COMMIT | PAG_READ | PAG_WRITE, pszSrcFile, __LINE__)) { 134 132 memset(pfealist, 0, ealen + 1); 135 133 pfealist->cbList = ealen;
Note:
See TracChangeset
for help on using the changeset viewer.