mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Fix for bug #4373: \u behaves differently
This commit is contained in:
parent
936eb4b4f4
commit
9700398e8b
1 changed files with 3 additions and 2 deletions
|
@ -2693,8 +2693,9 @@ char *get_arg(char *line, my_bool get_next_arg)
|
|||
ptr++;
|
||||
if (*ptr == '\\') // short command was used
|
||||
ptr+= 2;
|
||||
while (*ptr &&!my_isspace(charset_info, *ptr)) // skip command
|
||||
ptr++;
|
||||
else
|
||||
while (*ptr &&!my_isspace(charset_info, *ptr)) // skip command
|
||||
ptr++;
|
||||
}
|
||||
if (!*ptr)
|
||||
return NullS;
|
||||
|
|
Loading…
Reference in a new issue