From 3a34dae722c29bb41af3c62ca37b749fa9389240 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sun, 2 Feb 2025 20:42:57 +0100 Subject: [PATCH] [dxvk] Work around locale-dependent regex parsing crash --- src/util/config/config.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index c30276033..f4b7fc4c3 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -1214,8 +1214,16 @@ namespace dxvk { const Config* findProfile(const ProfileList& profiles, const std::string& appName) { auto appConfig = std::find_if(profiles.begin(), profiles.end(), [&appName] (const std::pair& pair) { - std::regex expr(pair.first, std::regex::extended | std::regex::icase); - return std::regex_search(appName, expr); + // With certain locales, regex parsing will simply crash. Using regex::imbue + // does not resolve this; only the global locale seems to matter here. Catch + // bad_alloc errors to work around this for now. + try { + std::regex expr(pair.first, std::regex::extended | std::regex::icase); + return std::regex_search(appName, expr); + } catch (const std::bad_alloc& e) { + Logger::err(str::format("Failed to parse regular expression: ", pair.first)); + return false; + } }); return appConfig != profiles.end()