提交 bd3d7739 编写于 作者: Peacoor Zomboss's avatar Peacoor Zomboss

Remove error comment

上级 eb725259
......@@ -74,7 +74,7 @@ bool remove_module(DWORD pid, HMODULE module_handle)
bool result = false;
hproc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
if (hproc == 0) goto finally;
hthread = CreateRemoteThread(hproc, NULL, 0, (LPTHREAD_START_ROUTINE)FreeLibrary, module_handle, 0, NULL); // 创建远程线程注入
hthread = CreateRemoteThread(hproc, NULL, 0, (LPTHREAD_START_ROUTINE)FreeLibrary, module_handle, 0, NULL);
if (hthread == 0) goto finally;
WaitForSingleObject(hthread, INFINITE);
DWORD threadres;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册