diff options
author | unknown <gluh@mysql.com/eagle.(none)> | 2007-05-17 13:27:39 +0500 |
---|---|---|
committer | unknown <gluh@mysql.com/eagle.(none)> | 2007-05-17 13:27:39 +0500 |
commit | 1598c0343e56be15a6149090a9b328b0b3f25a76 (patch) | |
tree | 2385845b73bab48f6b831c49741e33aec769dfea | |
parent | 7df3d7b0750be3454852ab9d72f83fc4d2401206 (diff) | |
download | mariadb-git-1598c0343e56be15a6149090a9b328b0b3f25a76.tar.gz |
valgrind error fix(addon)
-rw-r--r-- | sql/sql_lex.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index bd81aa2d5c1..59bed09aa28 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -1770,7 +1770,7 @@ void Query_tables_list::destroy_query_tables_list() st_lex::st_lex() :result(0), yacc_yyss(0), yacc_yyvs(0), - sql_command(SQLCOM_END) + sql_command(SQLCOM_END), option_type(OPT_DEFAULT) { /* Check that plugins_static_buffer is declared immediately after plugins */ compile_time_assert((&plugins + 1) == (DYNAMIC_ARRAY*)plugins_static_buffer); |