We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NTSTATUS status = PsCreateSystemThread( &hThread, THREAD_ALL_ACCESS, &obAttr, NULL, &clientID, &BBMapWorker, pPath ); hThread没有释放,是否漏写了ZwClose?
以下是官网介绍: [out] ThreadHandle 指向将接收句柄的变量。 在不再使用句柄后,驱动程序必须使用 ZwClose 关闭该句柄。 此句柄是 Windows Vista 和更高版本的 Windows 的内核句柄。 在早期版本的 Windows 中,句柄可能不是内核句柄。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
NTSTATUS status = PsCreateSystemThread( &hThread, THREAD_ALL_ACCESS, &obAttr, NULL, &clientID, &BBMapWorker, pPath );
hThread没有释放,是否漏写了ZwClose?
以下是官网介绍:
[out] ThreadHandle
指向将接收句柄的变量。 在不再使用句柄后,驱动程序必须使用 ZwClose 关闭该句柄。 此句柄是 Windows Vista 和更高版本的 Windows 的内核句柄。 在早期版本的 Windows 中,句柄可能不是内核句柄。
The text was updated successfully, but these errors were encountered: