1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fix for bug #4373: \u behaves differently

This commit is contained in:
gluh@gluh.mysql.r18.ru
2004-09-03 19:56:24 +04:00
parent 936eb4b4f4
commit 9700398e8b

View File

@@ -2693,8 +2693,9 @@ char *get_arg(char *line, my_bool get_next_arg)
ptr++; ptr++;
if (*ptr == '\\') // short command was used if (*ptr == '\\') // short command was used
ptr+= 2; ptr+= 2;
while (*ptr &&!my_isspace(charset_info, *ptr)) // skip command else
ptr++; while (*ptr &&!my_isspace(charset_info, *ptr)) // skip command
ptr++;
} }
if (!*ptr) if (!*ptr)
return NullS; return NullS;