Changeset 1009 for trunk/dll/systemf.c
- Timestamp:
- May 10, 2008, 9:51:58 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/systemf.c
r989 r1009 598 598 EXEC_FRAME, &ex); 599 599 if (ret != 1) { 600 xfree(commandline );600 xfree(commandline, pszSrcFile, __LINE__); 601 601 return (ret == 0) ? -1 : -2; 602 602 } … … 1302 1302 strcpy(executable, GetCmdSpec(FALSE)); 1303 1303 } 1304 xfree(temp );1304 xfree(temp, pszSrcFile, __LINE__); 1305 1305 } 1306 1306 } … … 1316 1316 pgd.swpInitial.hwndInsertBehind = HWND_TOP; 1317 1317 happ = WinStartApp(hwndNotify, &pgd, NULL, NULL, ulOptions); 1318 xfree(parameters );1318 xfree(parameters, pszSrcFile, __LINE__); 1319 1319 } 1320 1320 } 1321 xfree(executable );1321 xfree(executable, pszSrcFile, __LINE__); 1322 1322 } 1323 1323 return happ;
Note:
See TracChangeset
for help on using the changeset viewer.