1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Use UNINIT_VAR workaround instead of LINT_INIT.

This commit is contained in:
Davi Arnaut
2010-07-09 16:37:52 -03:00
parent 52d5941bf1
commit f801ca68c6
2 changed files with 4 additions and 5 deletions

View File

@ -669,8 +669,7 @@ list_fields(MYSQL *mysql,const char *db,const char *table,
char query[1024],*end;
MYSQL_RES *result;
MYSQL_ROW row;
ulong rows;
LINT_INIT(rows);
ulong UNINIT_VAR(rows);
if (mysql_select_db(mysql,db))
{