Changeset 1039 for trunk/dll/pathutil.c
- Timestamp:
- Jul 6, 2008, 12:16:21 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/pathutil.c
r1009 r1039 16 16 ***********************************************************************/ 17 17 18 #include <stdlib.h> 18 19 #include <string.h> 19 20 … … 27 28 #include "errutil.h" // Dos_Error... 28 29 #include "strutil.h" // GetPString 30 #include "fortify.h" 29 31 30 32 static PSZ pszSrcFile = __FILE__; … … 132 134 szArgs = xmalloc(MaxComLineStrg, pszSrcFile, __LINE__); 133 135 if (!szArgs) { 134 xfree(szCmdLine, pszSrcFile, __LINE__);136 free(szCmdLine); 135 137 return pszCmdLine_; //already complained 136 138 } … … 333 335 } 334 336 } 335 xfree(szArgs, pszSrcFile, __LINE__);336 xfree(szCmdLine, pszSrcFile, __LINE__);337 free(szArgs); 338 free(szCmdLine); 337 339 return pszWorkBuf; 338 340 }
Note:
See TracChangeset
for help on using the changeset viewer.