Changeset 985 for trunk/dll/subj.c
- Timestamp:
- Mar 1, 2008, 2:37:14 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/subj.c
r907 r985 14 14 20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat 15 15 01 Sep 07 GKY Use xDosSetPathInfo to fix case where FS3 buffer crosses 64k boundry 16 29 Feb 08 GKY Use xfree where appropriate 16 17 17 18 ***********************************************************************/ … … 56 57 pfealist = xmallocz(1024, pszSrcFile, __LINE__); 57 58 if (pfealist) 58 59 xfree(pgealist); 59 60 else { 60 61 pfealist->cbList = 1024; … … 64 65 rc = DosQueryPathInfo(filename, FIL_QUERYEASFROMLIST, 65 66 (PVOID) & eaop, (ULONG) sizeof(EAOP2)); 66 free(pgealist);67 xfree(pgealist); 67 68 if (!rc) { 68 69 pfea = &eaop.fpFEA2List->list[0]; … … 73 74 subject[1023] = 0; 74 75 } 75 free(pfealist);76 xfree(pfealist); 76 77 if (rc == ERROR_SHARING_VIOLATION || rc == ERROR_ACCESS_DENIED) { 77 78 saymsg(MB_CANCEL,
Note:
See TracChangeset
for help on using the changeset viewer.