Changeset 1009 for trunk/dll/misc.c
- Timestamp:
- May 10, 2008, 9:51:58 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/misc.c
r998 r1009 229 229 } 230 230 } 231 xfree(s );231 xfree(s, pszSrcFile, __LINE__); 232 232 } 233 233 if (releaseme) … … 733 733 psz = pci->pszSubject; 734 734 pci->pszSubject = NullStr; 735 xfree(psz );735 xfree(psz, pszSrcFile, __LINE__); 736 736 } 737 737 else … … 798 798 psz = pci->pszLongName; 799 799 pci->pszLongName = NullStr; 800 xfree(psz );800 xfree(psz, pszSrcFile, __LINE__); 801 801 } 802 802 else … … 848 848 if (!PostMsg(hwnd, 849 849 UM_FIXEDITNAME, MPVOID, MPFROMP(filename))) 850 xfree(filename );850 xfree(filename, pszSrcFile, __LINE__); 851 851 } 852 852 if (stricmp(testname, pci->pszFileName)) { … … 856 856 if (!PostMsg(hwnd, 857 857 UM_FIXEDITNAME, MPVOID, MPFROMP(filename))) 858 xfree(filename );858 xfree(filename, pszSrcFile, __LINE__); 859 859 } 860 860 } … … 1002 1002 else if (ret != 0) 1003 1003 return -1; 1004 xfree(pszCmdLine );1004 xfree(pszCmdLine, pszSrcFile, __LINE__); 1005 1005 } 1006 1006 return 0; … … 1995 1995 GetPString(IDS_SUBJ) : GetPString(IDS_NAME)); 1996 1996 WinSetWindowText(hwnd, s); 1997 xfree(s );1997 xfree(s, pszSrcFile, __LINE__); 1998 1998 } 1999 1999 } … … 2014 2014 !(flWindowAttr & CV_TEXT)) ? GetPString(IDS_MINI) : NullStr); 2015 2015 WinSetWindowText(hwnd, s); 2016 xfree(s );2016 xfree(s, pszSrcFile, __LINE__); 2017 2017 } 2018 2018 } … … 2034 2034 sprintf(s, "F:%s", GetPString(IDS_ALLTEXT)); 2035 2035 WinSetWindowText(hwnd, s); 2036 xfree(s );2036 xfree(s, pszSrcFile, __LINE__); 2037 2037 } 2038 2038 } … … 2179 2179 } 2180 2180 numswitches = y; 2181 xfree(pswb );2181 xfree(pswb, pszSrcFile, __LINE__); 2182 2182 DosPostEventSem(CompactSem); 2183 2183 }
Note:
See TracChangeset
for help on using the changeset viewer.