1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fix warning about possibly uninitialized variable "warnings"

This commit is contained in:
unknown
2007-11-26 16:45:58 +01:00
parent 747049ccb8
commit bc60aa3228

View File

@@ -2166,7 +2166,7 @@ com_go(String *buffer,char *line __attribute__((unused)))
{
char buff[200], time_buff[32], *pos;
MYSQL_RES *result;
ulong timer, warnings;
ulong timer, warnings= 0;
uint error= 0;
int err= 0;