Bug#30695: An apostrophe ' in the comment of the ADD PARTITION

    causes the Server to crash.

Post-pushbuild fix

Pushbuild genereted valgrind warnings.

Changed function to safer variant.
parent 10df30f0
...@@ -1866,7 +1866,7 @@ static int add_quoted_string(File fptr, const char *quotestr) ...@@ -1866,7 +1866,7 @@ static int add_quoted_string(File fptr, const char *quotestr)
String escapedstr; String escapedstr;
int err= add_string(fptr, "'"); int err= add_string(fptr, "'");
err+= append_escaped(&escapedstr, &orgstr); err+= append_escaped(&escapedstr, &orgstr);
err+= add_string(fptr, escapedstr.c_ptr()); err+= add_string(fptr, escapedstr.c_ptr_safe());
return err + add_string(fptr, "'"); return err + add_string(fptr, "'");
} }
......
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