Commit c12dad02 authored by Alexander Barkov's avatar Alexander Barkov

A post fix for BUG#45645 Mysql server close all connection and restart using lower function

- Initialized caseinfo only if it is NULL
parent e942adb2
......@@ -7858,7 +7858,8 @@ static my_bool create_tailoring(CHARSET_INFO *cs, void *(*alloc)(size_t))
return 1;
}
cs->caseinfo= my_unicase_default;
if (!cs->caseinfo)
cs->caseinfo= my_unicase_default;
if (!(newweights= (uint16**) (*alloc)(256*sizeof(uint16*))))
return 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment