From ee051fad92c9e3b7b38114ff1b1df6496afcfcac Mon Sep 17 00:00:00 2001 From: ahm3dgg Date: Fri, 9 Jan 2026 05:45:47 +0200 Subject: [PATCH] Clang Tidy Fix --- src/windows-emulator/syscalls/section.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/windows-emulator/syscalls/section.cpp b/src/windows-emulator/syscalls/section.cpp index 7287c1c2..0b6f1adb 100644 --- a/src/windows-emulator/syscalls/section.cpp +++ b/src/windows-emulator/syscalls/section.cpp @@ -144,7 +144,8 @@ namespace syscalls section_handle.write(c.proc.sections.store(knowndll_section)); return STATUS_SUCCESS; } - else if (attributes.RootDirectory == KNOWN_DLLS32_DIRECTORY || filename.starts_with(u"\\knowndlls32\\")) + + if (attributes.RootDirectory == KNOWN_DLLS32_DIRECTORY || filename.starts_with(u"\\knowndlls32\\")) { auto& knowndlls_sections = c.win_emu.process.knowndlls32_sections;