mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 11:27:39 +02:00
Fixed bug in warning handling (Memory was allocated from wrong MEM_ROOT)
sql/item_sum.cc: Fixed bug in warning handling. sql/item_sum.h: Fixed bug in warning handling. sql/sql_class.h: Fixed bug in warning handling. sql/sql_error.cc: Fixed bug in warning handling. strings/my_vsnprintf.c: After merge fix
This commit is contained in:
parent
c9d2e7759a
commit
0dbfff4614
5 changed files with 40 additions and 27 deletions
|
|
@ -37,7 +37,6 @@ int my_snprintf(char* to, size_t n, const char* fmt, ...)
|
|||
{
|
||||
int result;
|
||||
va_list args;
|
||||
int result;
|
||||
va_start(args,fmt);
|
||||
result= my_vsnprintf(to, n, fmt, args);
|
||||
va_end(args);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue