mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
Fix possible use of uninitialized variable during error handling in mysql.cc
This commit is contained in:
parent
ab12b26671
commit
44ba2ae716
1 changed files with 2 additions and 1 deletions
|
@ -2155,7 +2155,8 @@ com_go(String *buffer,char *line __attribute__((unused)))
|
|||
{
|
||||
char buff[200], time_buff[32], *pos;
|
||||
MYSQL_RES *result;
|
||||
ulong timer, warnings;
|
||||
ulong timer;
|
||||
ulong warnings= 0;
|
||||
uint error= 0;
|
||||
int err= 0;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue