From e5822c2c1aae78199f916a05aa45b09647029fbd Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 1 Jun 2007 19:57:26 +0200 Subject: [PATCH] Move code after variable delcaration --- client/mysqltest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/mysqltest.c b/client/mysqltest.c index 7835e95c4c0..04dfce28ab4 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -1511,7 +1511,6 @@ void var_set_query_get_value(struct st_command *command, VAR *var) int col_no= -1; MYSQL_RES* res; MYSQL* mysql= &cur_con->mysql; - LINT_INIT(res); static DYNAMIC_STRING ds_query; static DYNAMIC_STRING ds_col; @@ -1523,6 +1522,7 @@ void var_set_query_get_value(struct st_command *command, VAR *var) }; DBUG_ENTER("var_set_query_get_value"); + LINT_INIT(res); strip_parentheses(command); DBUG_PRINT("info", ("query: %s", command->query));