From 7fc3efdc4fb5fa242ebb56257283596dabd1d1f0 Mon Sep 17 00:00:00 2001 From: Pedro Gomes Date: Mon, 18 Feb 2013 17:02:26 +0000 Subject: [PATCH] BUG#13545447: RPL_ROTATE_LOGS FAILS DUE TO CONCURRENCY ISSUES IN REP. CODE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Post-push fix, broken build: sql/rpl_master.cc:1049:70: error: converting ‘false’ to pointer type ‘bool*’ [-Werror=conversion-null] --- sql/log_event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/log_event.h b/sql/log_event.h index 4fabb83aac7..63b31454011 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -972,7 +972,7 @@ public: static int read_log_event(IO_CACHE* file, String* packet, pthread_mutex_t* log_lock, const char *log_file_name_arg= NULL, - bool* is_binlog_active= false); + bool* is_binlog_active= NULL); /* init_show_field_list() prepares the column names and types for the output of SHOW BINLOG EVENTS; it is used only by SHOW BINLOG