diff options
author | Nuno Carvalho <nuno.carvalho@oracle.com> | 2013-03-27 11:19:29 +0000 |
---|---|---|
committer | Nuno Carvalho <nuno.carvalho@oracle.com> | 2013-03-27 11:19:29 +0000 |
commit | 84bd6fec76d6b93d189725b535979996f9c2cb00 (patch) | |
tree | 378506dc4da77d6e9de7dd601f6be13401cf84bc /sql/log_event.cc | |
parent | 0e763f4db5e024e75fdedb9bc3c3cbd1a45ed9e5 (diff) | |
download | mariadb-git-84bd6fec76d6b93d189725b535979996f9c2cb00.tar.gz |
BUG#16541422: LOG-SLAVE-UPDATES + REPLICATE-WILD-IGNORE-TABLE FAILS FOR USER VARIABLES
Fixed possible uninitialized variable.
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r-- | sql/log_event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc index f962f897984..fe93eb665cf 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -5967,7 +5967,7 @@ int User_var_log_event::do_apply_event(Relay_log_info const *rli) { Item *it= 0; CHARSET_INFO *charset; - query_id_t sav_query_id; /* memorize orig id when deferred applying */ + query_id_t sav_query_id= 0; /* memorize orig id when deferred applying */ if (rli->deferred_events_collecting) { |