RegEx with ASAN crashes the application
Summary The issue at hand involves a regular expression pattern that causes a crash when used with AddressSanitizer (ASAN) in a C++ application. The pattern L”primary key\(*” is used to match the string “primary key” followed by zero or more occurrences of any character, but it results in a crash due to invalid memory access. … Read more