Use std::map instead of std::unordered_map for data that will be serialized

This commit is contained in:
ahm3dgg
2026-01-09 03:09:42 +02:00
parent 833fd610da
commit 8481cdfb5d
6 changed files with 18 additions and 14 deletions

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") || filename.starts_with(u"ntdll.dll")))
{
return STATUS_OBJECT_NAME_NOT_FOUND;
}