diff options
author | monty@mysql.com/nosik.monty.fi <> | 2006-11-01 19:41:09 +0200 |
---|---|---|
committer | monty@mysql.com/nosik.monty.fi <> | 2006-11-01 19:41:09 +0200 |
commit | ca99516cc704509db4312e1b2addc379cef20749 (patch) | |
tree | 5e83a9c8d05ac5737f80de4551b918fa425184e4 /server-tools/instance-manager/parse.cc | |
parent | 99b572b9ebdcc0fe1037bd764d58cf35fca2090d (diff) | |
download | mariadb-git-ca99516cc704509db4312e1b2addc379cef20749.tar.gz |
Fixed a lot of compiler warnings (Mainly in mysqld and instance manager)
Fixed some possible fatal wrong arguments to printf() style functions
Initialized some not initialized variables
Fixed bug in stored procedure and continue handlers
(Fixes Bug#22150)
Diffstat (limited to 'server-tools/instance-manager/parse.cc')
-rw-r--r-- | server-tools/instance-manager/parse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server-tools/instance-manager/parse.cc b/server-tools/instance-manager/parse.cc index d69fb1cecec..048f7983b32 100644 --- a/server-tools/instance-manager/parse.cc +++ b/server-tools/instance-manager/parse.cc @@ -273,7 +273,7 @@ Command *parse_command(Instance_map *map, const char *text) { uint word_len; LEX_STRING instance_name; - Command *command; + Command *command= 0; const char *saved_text= text; Token tok1= shift_token(&text, &word_len); |