Changeset 966 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Sep 18, 1999, 2:07:35 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r956 r966 1 /* $Id: wprocess.cpp,v 1.3 1 1999-09-15 23:38:03sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.32 1999-09-18 12:07:35 sandervl Exp $ */ 2 2 3 3 /* … … 494 494 495 495 if(lpszModule == NULL) { 496 hMod = WinExe->getInstanceHandle(); 496 if(WinExe) 497 hMod = WinExe->getInstanceHandle(); 498 else hMod = -1; 497 499 } 498 500 else { … … 513 515 *dot = 0; 514 516 515 if(!fDllModule && !strcmpi(lpszModule, WinExe->getModuleName())) {517 if(!fDllModule && WinExe && !strcmpi(lpszModule, WinExe->getModuleName())) { 516 518 hMod = WinExe->getInstanceHandle(); 517 519 }
Note:
See TracChangeset
for help on using the changeset viewer.