Changeset 1627 for trunk/dll/misc.c
- Timestamp:
- Aug 26, 2011, 11:48:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/misc.c
r1546 r1627 68 68 23 Oct 10 GKY Add menu items for opening directory cnrs based on path of selected item 69 69 including the option to use walk directories to select path 70 26 Aug 11 GKY Add a low mem version of xDosAlloc* wrappers; move error checking into all the 71 xDosAlloc* wrappers. 70 72 71 73 ***********************************************************************/ … … 882 884 else 883 885 ealen = sizeof(FEALIST) + 9; 884 rc = xDosAllocMem((PPVOID) & pfealist, ealen + 64, 885 PAG_COMMIT | PAG_READ | PAG_WRITE, pszSrcFile, __LINE__); 886 if (rc) 887 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, 888 __LINE__, GetPString(IDS_OUTOFMEMORY)); 889 else { 886 if (!xDosAllocMem((PPVOID) & pfealist, ealen + 64, 887 PAG_COMMIT | PAG_READ | PAG_WRITE, pszSrcFile, __LINE__)) { 890 888 memset(pfealist, 0, ealen + 1); 891 889 pfealist->cbList = ealen;
Note:
See TracChangeset
for help on using the changeset viewer.