Continue after close old process #5277
This commit is contained in:
parent
fa2a6a2169
commit
80292961ad
|
@ -934,8 +934,10 @@ init(DWORD threadID)
|
||||||
// old process (probably) still exists so refuse to
|
// old process (probably) still exists so refuse to
|
||||||
// reinitialize this DLL (and thus steal it from the
|
// reinitialize this DLL (and thus steal it from the
|
||||||
// old process).
|
// old process).
|
||||||
CloseHandle(process);
|
int result = CloseHandle(process);
|
||||||
return 0;
|
if (result == false) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// clean up after old process. the system should've already
|
// clean up after old process. the system should've already
|
||||||
|
|
Loading…
Reference in New Issue