Continue after close old process #5277

This commit is contained in:
Jerry (Xinyu Hou) 2016-05-09 06:31:05 -07:00
parent fa2a6a2169
commit 80292961ad
1 changed files with 4 additions and 2 deletions

View File

@ -934,8 +934,10 @@ init(DWORD threadID)
// old process (probably) still exists so refuse to
// reinitialize this DLL (and thus steal it from the
// old process).
CloseHandle(process);
return 0;
int result = CloseHandle(process);
if (result == false) {
return 0;
}
}
// clean up after old process. the system should've already