diff options
author | unknown <serg@janus.mylan> | 2007-04-13 19:23:02 +0200 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2007-04-13 19:23:02 +0200 |
commit | bf2aaad97d0ff65a4a79f9012b4443d4d6dbd6e8 (patch) | |
tree | c318326d7c94a04b34753308fce3a0bb1b38f53e /sql/event_queue.cc | |
parent | 1e6bd48ccbd725c298453cf6c7645b430529fe43 (diff) | |
download | mariadb-git-bf2aaad97d0ff65a4a79f9012b4443d4d6dbd6e8.tar.gz |
wl#2936 - fixing problems
include/mysql/plugin.h:
warning. no int/realsize
mysys/my_getopt.c:
combination of prefixes (e.g. --loose-skip-) didn't work
sql/event_queue.cc:
warning
sql/handler.cc:
assert
sql/handler.h:
comment
sql/item_create.cc:
warnings
sql/log.cc:
warnings
sql/mysqld.cc:
wl#2936 - fixing problems (memory leak in load_defaults,
garbage in opt_[slow_]logname
sql/partition_element.h:
warnings
sql/rpl_utility.h:
warnings
sql/set_var.cc:
comment
sql/set_var.h:
warnings
sql/sql_class.cc:
warnings
sql/sql_parse.cc:
warnings
sql/sql_plugin.cc:
wl#2936 - fixing problems: portability, coding style,
reporting of spurious errors, crashes, incorrect help output
storage/example/ha_example.cc:
comment
storage/innobase/handler/ha_innodb.cc:
wl#2936 - fixing problems (crash)
Diffstat (limited to 'sql/event_queue.cc')
-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 068abbe3408..38ba212bef3 100644 --- a/sql/event_queue.cc +++ b/sql/event_queue.cc @@ -79,7 +79,7 @@ event_queue_element_compare_q(void *vptr, byte* a, byte *b) */ Event_queue::Event_queue() - :mutex_last_unlocked_at_line(0), mutex_last_locked_at_line(0), + :mutex_last_locked_at_line(0), mutex_last_unlocked_at_line(0), mutex_last_attempted_lock_at_line(0), mutex_queue_data_locked(FALSE), mutex_queue_data_attempting_lock(FALSE) { |