diff options
author | monty@mysql.com <> | 2003-11-02 14:00:25 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2003-11-02 14:00:25 +0200 |
commit | cf535556c6ed290dbcce23f5e1b96dd8f82aebd7 (patch) | |
tree | 4671bcf9022a714aa9c3b90f39cd86bb26fd47d1 /sql/mysqld.cc | |
parent | dba82596aad3a0dd52443ea5d2d10b8346106708 (diff) | |
download | mariadb-git-cf535556c6ed290dbcce23f5e1b96dd8f82aebd7.tar.gz |
Cleanups (comments and compiler warnings)
dded init of variable to fix core dump on startup errors
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index fafc67e059d..75e2fc957e4 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -1884,7 +1884,7 @@ extern "C" int my_message_sql(uint error, const char *str, if ((thd= current_thd)) { /* - thd->lex.current_select equel to zero if lex structure is not inited + thd->lex.current_select == 0 if lex structure is not inited (not query command (COM_QUERY)) */ if (thd->lex.current_select && |