Changeset 1039 for trunk/dll/subj.c
- Timestamp:
- Jul 6, 2008, 12:16:21 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/subj.c
r1009 r1039 32 32 #include "strutil.h" // GetPString 33 33 #include "fm3dll.h" 34 #include "fortify.h" 34 35 35 36 static PSZ pszSrcFile = __FILE__; … … 57 58 pfealist = xmallocz(1024, pszSrcFile, __LINE__); 58 59 if (pfealist) 59 xfree(pgealist, pszSrcFile, __LINE__);60 free(pgealist); 60 61 else { 61 62 pfealist->cbList = 1024; … … 65 66 rc = DosQueryPathInfo(filename, FIL_QUERYEASFROMLIST, 66 67 (PVOID) & eaop, (ULONG) sizeof(EAOP2)); 67 xfree(pgealist, pszSrcFile, __LINE__);68 free(pgealist); 68 69 if (!rc) { 69 70 pfea = &eaop.fpFEA2List->list[0]; … … 74 75 subject[1023] = 0; 75 76 } 76 xfree(pfealist, pszSrcFile, __LINE__);77 free(pfealist); 77 78 if (rc == ERROR_SHARING_VIOLATION || rc == ERROR_ACCESS_DENIED) { 78 79 saymsg(MB_CANCEL,
Note:
See TracChangeset
for help on using the changeset viewer.