From dc046edb686e2cbc8fe7d42315c61caf9f700905 Mon Sep 17 00:00:00 2001 From: Mark Jansen Date: Fri, 28 Mar 2025 09:21:09 +0100 Subject: [PATCH] [KERNEL32] Add debug info to statically initialized critical section --- dll/win32/kernel32/winnls/string/locale.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dll/win32/kernel32/winnls/string/locale.c b/dll/win32/kernel32/winnls/string/locale.c index f7d327e2142..13f963bee5c 100644 --- a/dll/win32/kernel32/winnls/string/locale.c +++ b/dll/win32/kernel32/winnls/string/locale.c @@ -260,7 +260,18 @@ static struct registry_value { LOCALE_ITIMEMARKPOSN, iTimePrefixW } }; +#ifdef __REACTOS__ +static RTL_CRITICAL_SECTION cache_section; +static RTL_CRITICAL_SECTION_DEBUG critsect_debug = +{ + 0, 0, &cache_section, + { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList }, + 0, 0, { (DWORD_PTR)(__FILE__ ": locale_section") } +}; +static RTL_CRITICAL_SECTION cache_section = { &critsect_debug, -1, 0, 0, 0, 0 }; +#else static RTL_CRITICAL_SECTION cache_section = { NULL, -1, 0, 0, 0, 0 }; +#endif #ifndef __REACTOS__ /* Copy Ascii string to Unicode without using codepages */