Changeset 1039 for trunk/dll/misc.c
- Timestamp:
- Jul 6, 2008, 12:16:21 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/misc.c
r1030 r1039 67 67 #include "command.h" // LINKCMDS 68 68 #include "fm3dll.h" 69 #include "fortify.h" 69 70 70 71 #pragma data_seg(DATA1) … … 232 233 } 233 234 } 234 xfree(s, pszSrcFile, __LINE__);235 free(s); 235 236 } 236 237 if (releaseme) … … 851 852 if (!PostMsg(hwnd, 852 853 UM_FIXEDITNAME, MPVOID, MPFROMP(filename))) 853 xfree(filename, pszSrcFile, __LINE__);854 free(filename); 854 855 } 855 856 if (stricmp(testname, pci->pszFileName)) { … … 859 860 if (!PostMsg(hwnd, 860 861 UM_FIXEDITNAME, MPVOID, MPFROMP(filename))) 861 xfree(filename, pszSrcFile, __LINE__);862 free(filename); 862 863 } 863 864 } … … 1005 1006 else if (ret != 0) 1006 1007 return -1; 1007 xfree(pszCmdLine, pszSrcFile, __LINE__);1008 free(pszCmdLine); 1008 1009 } 1009 1010 return 0; … … 1998 1999 GetPString(IDS_SUBJ) : GetPString(IDS_NAME)); 1999 2000 WinSetWindowText(hwnd, s); 2000 xfree(s, pszSrcFile, __LINE__);2001 free(s); 2001 2002 } 2002 2003 } … … 2017 2018 !(flWindowAttr & CV_TEXT)) ? GetPString(IDS_MINI) : NullStr); 2018 2019 WinSetWindowText(hwnd, s); 2019 xfree(s, pszSrcFile, __LINE__);2020 free(s); 2020 2021 } 2021 2022 } … … 2037 2038 sprintf(s, "F:%s", GetPString(IDS_ALLTEXT)); 2038 2039 WinSetWindowText(hwnd, s); 2039 xfree(s, pszSrcFile, __LINE__);2040 free(s); 2040 2041 } 2041 2042 } … … 2182 2183 } 2183 2184 numswitches = y; 2184 xfree(pswb, pszSrcFile, __LINE__);2185 free(pswb); 2185 2186 DosPostEventSem(CompactSem); 2186 2187 }
Note:
See TracChangeset
for help on using the changeset viewer.