Changeset 1627 for trunk/dll/copyf.c
- Timestamp:
- Aug 26, 2011, 11:48:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/copyf.c
r1520 r1627 27 27 19 Oct 09 SHL Correct copyf regression when moving to save volume 28 28 31 Mar 10 JBS Correct copyf which was creating 8.4, not 8.3, temporary names 29 26 Aug 11 GKY Add a low mem version of xDosAlloc* wrappers; move error checking into all the 30 xDosAlloc* wrappers. 29 31 30 32 ***********************************************************************/ … … 326 328 else 327 329 ealen = sizeof(FEALIST) + 10; 328 rc = xDosAllocMem((PPVOID) & pfealist, 329 ealen + 32L, PAG_COMMIT | PAG_READ | PAG_WRITE, 330 pszSrcFile, __LINE__); 331 if (rc) 332 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 333 GetPString(IDS_OUTOFMEMORY)); 330 if (xDosAllocMem((PPVOID) &pfealist, 331 ealen + 32L, PAG_COMMIT | PAG_READ | PAG_WRITE, 332 pszSrcFile, __LINE__)) 333 return FALSE; 334 334 else { 335 335 memset(pfealist, 0, ealen + 1);
Note:
See TracChangeset
for help on using the changeset viewer.