mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-22 05:03:56 +00:00
Fix NtDeleteAtom signature
This commit is contained in:
@@ -537,9 +537,9 @@ namespace syscalls
|
||||
return handle_NtAddAtomEx(c, atom_name, length, atom, 0);
|
||||
}
|
||||
|
||||
NTSTATUS handle_NtDeleteAtom(const syscall_context& c, const emulator_object<RTL_ATOM> atom)
|
||||
NTSTATUS handle_NtDeleteAtom(const syscall_context& c, const RTL_ATOM atom)
|
||||
{
|
||||
c.proc.delete_atom(atom.read());
|
||||
c.proc.delete_atom(atom);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user