Commit 0b943795 authored by Jan Lindström's avatar Jan Lindström

MDEV-13850: Uninitialized variable at wsrep_binlog.cc:455

parent 99fbf3eb
...@@ -452,7 +452,7 @@ void wsrep_dump_rbr_buf_with_header(THD *thd, const void *rbr_buf, ...@@ -452,7 +452,7 @@ void wsrep_dump_rbr_buf_with_header(THD *thd, const void *rbr_buf,
File file; File file;
IO_CACHE cache; IO_CACHE cache;
Log_event_writer writer(&cache); Log_event_writer writer(&cache);
Format_description_log_event *ev; Format_description_log_event *ev=NULL;
int len= my_snprintf(filename, PATH_MAX, "%s/GRA_%ld_%lld_v2.log", int len= my_snprintf(filename, PATH_MAX, "%s/GRA_%ld_%lld_v2.log",
wsrep_data_home_dir, thd->thread_id, wsrep_data_home_dir, thd->thread_id,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment