diff options
author | unknown <guilhem@mysql.com> | 2003-03-21 21:08:56 +0100 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2003-03-21 21:08:56 +0100 |
commit | 696962c4e6d0582c8de4cc3e6943adf372c925fa (patch) | |
tree | 404f69efc8d7f0a50ff03212f5369088551cd5b2 /sql/log_event.cc | |
parent | 9a8637339a3f9e822e0aa3925a451945efa380f9 (diff) | |
download | mariadb-git-696962c4e6d0582c8de4cc3e6943adf372c925fa.tar.gz |
Fix for bug #174 (charset 0 caused segfault)
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 68b897d30ae..5e3340b4cf7 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -328,7 +328,7 @@ int Log_event::exec_event(struct st_relay_log_info* rli) ****************************************************************************/ void Log_event::pack_info(Protocol *protocol) { - protocol->store("",0); + protocol->store("", &my_charset_bin); } |