Changeset 1039 for trunk/dll/systemf.c
- Timestamp:
- Jul 6, 2008, 12:16:21 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/systemf.c
r1021 r1039 44 44 #include "pathutil.h" 45 45 #include "fm3dll.h" 46 #include "fortify.h" 46 47 47 48 static PSZ pszSrcFile = __FILE__; … … 599 600 EXEC_FRAME, &ex); 600 601 if (ret != 1) { 601 xfree(commandline, pszSrcFile, __LINE__);602 free(commandline); 602 603 return (ret == 0) ? -1 : -2; 603 604 } … … 609 610 (*ex.environment) ? ex.environment : NULL, 610 611 "%s", commandline); 611 xfree(commandline, pszSrcFile, __LINE__);612 free(commandline); 612 613 return ret; 613 614 } … … 1305 1306 strcpy(executable, GetCmdSpec(FALSE)); 1306 1307 } 1307 xfree(temp, pszSrcFile, __LINE__);1308 free(temp); 1308 1309 } 1309 1310 } … … 1319 1320 pgd.swpInitial.hwndInsertBehind = HWND_TOP; 1320 1321 happ = WinStartApp(hwndNotify, &pgd, NULL, NULL, ulOptions); 1321 xfree(parameters, pszSrcFile, __LINE__);1322 free(parameters); 1322 1323 } 1323 1324 } 1324 xfree(executable, pszSrcFile, __LINE__);1325 free(executable); 1325 1326 } 1326 1327 return happ;
Note:
See TracChangeset
for help on using the changeset viewer.