1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +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 6433a55356
commit 3d2389c337
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))
{