We can only wish

This commit is contained in:
ahm3dgg
2026-01-09 03:41:22 +02:00
parent 48cb637571
commit c58ad0153e
2 changed files with 2 additions and 2 deletions

View File

@@ -363,7 +363,7 @@ namespace syscalls
emulator_object<ULONG> return_length);
NTSTATUS handle_NtQuerySecurityAttributesToken();
NTSTATUS handle_NtAdjustPrivilegesToken();
NTSTATUS handle_NtFlushInstructionCache(const syscall_context& c, handle process_handle, const emulator_object<uint64_t> base_address,
NTSTATUS handle_NtFlushInstructionCache(const syscall_context& c, handle process_handle, emulator_object<uint64_t> base_address,
uint64_t region_size);
NTSTATUS handle_NtQueryPerformanceCounter(const syscall_context& c, const emulator_object<LARGE_INTEGER> performance_counter,

View File

@@ -119,7 +119,7 @@ namespace syscalls
}
utils::string::to_lower_inplace(filename);
if (is_known_dll && (filename.starts_with(u"win32u.dll")))
if (is_known_dll && filename.starts_with(u"win32u.dll"))
{
return STATUS_OBJECT_NAME_NOT_FOUND;
}