diff options
author | sasha@mysql.sashanet.com <> | 2002-03-15 18:44:44 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2002-03-15 18:44:44 -0700 |
commit | 2e6b48afd31008809439900db2d577ea0ff9d90f (patch) | |
tree | fd01da1dc4d0055ee7386fa88268c65589a33c64 /sql/sql_lex.cc | |
parent | d993a1c0c49ab200203993a8b20fb5ab02b930e2 (diff) | |
download | mariadb-git-2e6b48afd31008809439900db2d577ea0ff9d90f.tar.gz |
replication updates and bugfixes. Still not perfect - there is some strange
memory corruption I can only repeat on one system.
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index 43195bc908b..42a8a700da3 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -151,6 +151,7 @@ LEX *lex_start(THD *thd, uchar *buf,uint length) lex->yacc_yyss=lex->yacc_yyvs=0; lex->ignore_space=test(thd->sql_mode & MODE_IGNORE_SPACE); lex->slave_thd_opt=0; + bzero(&lex->mi,sizeof(lex->mi)); return lex; } |