Fix cleanup of object table (double NtClose crash).

This commit is contained in:
Ben Vanik 2014-09-01 10:03:52 -07:00
parent 9c2cf49755
commit 8dcfe94d81
1 changed files with 1 additions and 0 deletions

View File

@ -138,6 +138,7 @@ X_STATUS ObjectTable::RemoveHandle(X_HANDLE handle) {
} else { } else {
result = X_STATUS_INVALID_HANDLE; result = X_STATUS_INVALID_HANDLE;
} }
entry.object = nullptr;
} }
} }