Skip to content

Commit b9833f8

Browse files
committed
BUG#28125030 - C/JAVA ASYNCHRONOUS XPLUGIN TESTS CAUSES CRASH IN MYSQL SERVER 8.0.12
Follow-up fix for build with -DWITH_ICU=system.
1 parent 17c2c53 commit b9833f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/x/src/xpl_regex.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ bool xpl::Regex::match(const char *value) const {
5353
* and parse the text patter each time that xpl::Regex::match
5454
* is called.
5555
*/
56-
UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
56+
icu::UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
5757
std::unique_ptr<icu::RegexMatcher> regexp{
5858
m_pattern->matcher(value_as_utf8, match_status)};
5959

0 commit comments

Comments
 (0)