Piotr Caban (@piotr) commented about dlls/msvcrt/locale.c:
return locinfo->lc_category[category].locale; } newlocinfo = create_locinfo(category, locale, locinfo);
```suggestion:-0+0 /* Make sure that locinfo is not freed when thread locale is updated by e.g. stricmp(). */ grab_locinfo(locinfo); newlocinfo = create_locinfo(category, locale, locinfo); free_locinfo(locinfo); ```