Skip to content
New issue

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

fix: cleanup basic handler in np term #11046

Merged
merged 1 commit into from Oct 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions rpcs3/Emu/NP/np_handler.cpp
Expand Up @@ -381,6 +381,11 @@ void np_handler::init_NP(u32 poolsize, vm::ptr<void> poolptr)

void np_handler::terminate_NP()
{
// TODO: proper cleanup of everything here

// Unregister basic handler
basic_handler.registered = false;

// Reset memory pool
mpool.set(0);
mpool_size = 0;
Expand Down