diff options
author | ahristov@bk-internal.mysql.com <> | 2006-09-13 16:55:15 +0200 |
---|---|---|
committer | ahristov@bk-internal.mysql.com <> | 2006-09-13 16:55:15 +0200 |
commit | 895a4442de6dc547e41130db5c7b84682c316944 (patch) | |
tree | 06d3d3633bf725a532b13a8c8d4477334b0d2199 | |
parent | 2ef67ec2e563f739553e4a3dcce6bbb2092d7448 (diff) | |
download | mariadb-git-895a4442de6dc547e41130db5c7b84682c316944.tar.gz |
event_queue.cc:
fix sigsegv
-rw-r--r-- | sql/event_queue.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/event_queue.cc b/sql/event_queue.cc index f2c2a0616e0..a6eb84305a8 100644 --- a/sql/event_queue.cc +++ b/sql/event_queue.cc @@ -320,7 +320,7 @@ void Event_queue::drop_event(THD *thd, LEX_STRING dbname, LEX_STRING name) { DBUG_ENTER("Event_queue::drop_event"); - DBUG_PRINT("enter", ("thd=0x%lx db=%s name=%s", thd, dbname, name)); + DBUG_PRINT("enter", ("thd=0x%lx db=%s name=%s", thd, dbname.str, name.str)); LOCK_QUEUE_DATA(); find_n_remove_event(dbname, name); |