Changeset 1554 for trunk/dll/killproc.c
- Timestamp:
- Nov 21, 2010, 12:35:35 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/killproc.c
r1544 r1554 27 27 aren't user settable; realappname should be used for setting applicable to 28 28 one or more miniapp but not to FM/2 29 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 29 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). 30 Mostly cast CHAR CONSTANT * as CHAR *. 31 20 Nov 10 GKY Check that pTmpDir IsValid and recreate if not found; Fixes hangs caused 32 by temp file creation failures. 30 33 31 34 ***********************************************************************/ … … 63 66 #include "fortify.h" 64 67 #include "excputil.h" // xbeginthread 68 #include "valid.h" // IsValidDir 65 69 66 70 // Data definitions … … 267 271 268 272 WinSendDlgItemMsg(hwnd, KILL_LISTBOX, LM_DELETEALL, MPVOID, MPVOID); 273 if (pTmpDir && !IsValidDir(pTmpDir)) 274 DosCreateDir(pTmpDir, 0); 269 275 BldFullPathName(s, pTmpDir, "$PSTAT#$.#$#"); 270 276 unlinkf(s);
Note:
See TracChangeset
for help on using the changeset viewer.