Commit af3c6705 authored by Alexander Barkov's avatar Alexander Barkov

MDEV-9265 SuSE patches: Suspicious implicit sign extension

parent 99404c34
...@@ -1932,7 +1932,7 @@ my_utf32_uni(CHARSET_INFO *cs __attribute__((unused)), ...@@ -1932,7 +1932,7 @@ my_utf32_uni(CHARSET_INFO *cs __attribute__((unused)),
{ {
if (s + 4 > e) if (s + 4 > e)
return MY_CS_TOOSMALL4; return MY_CS_TOOSMALL4;
*pwc= (s[0] << 24) + (s[1] << 16) + (s[2] << 8) + (s[3]); *pwc= (((my_wc_t) s[0]) << 24) + (s[1] << 16) + (s[2] << 8) + (s[3]);
return 4; return 4;
} }
......
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