diff options
author | Tor Didriksen <tor.didriksen@oracle.com> | 2013-02-18 11:12:24 +0100 |
---|---|---|
committer | Tor Didriksen <tor.didriksen@oracle.com> | 2013-02-18 11:12:24 +0100 |
commit | f144e0fead306c31a4bf3767dad6efd4b404afbd (patch) | |
tree | 04fe907b48cd199a65ac6d2c1b035df3befa8c6f /sql/log_event.h | |
parent | 66eeaad6b8406105c6bef41f0b42c719587c1ffd (diff) | |
download | mariadb-git-f144e0fead306c31a4bf3767dad6efd4b404afbd.tar.gz |
BUG#13545447: RPL_ROTATE_LOGS FAILS DUE TO CONCURRENCY ISSUES IN REP. CODE
Post-push fix, broken build:
sql/rpl_master.cc:1049:70: error: converting ‘false’ to pointer type ‘bool*’ [-Werror=conversion-null]
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 72a269304ca..84564877974 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -1024,7 +1024,7 @@ public: static int read_log_event(IO_CACHE* file, String* packet, mysql_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 |