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:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user