mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
Added handling for ; comment character as there was for #.
Bug#2080
This commit is contained in:
@@ -461,7 +461,7 @@ static char *remove_end_comment(char *ptr)
|
|||||||
else if (quote == *ptr)
|
else if (quote == *ptr)
|
||||||
quote= 0;
|
quote= 0;
|
||||||
}
|
}
|
||||||
if (!quote && *ptr == '#') /* We are not inside a comment */
|
if (!quote && (*ptr == '#' || *ptr == ';')) // We are not inside a comment
|
||||||
{
|
{
|
||||||
*ptr= 0;
|
*ptr= 0;
|
||||||
return ptr;
|
return ptr;
|
||||||
|
Reference in New Issue
Block a user