Commit b9e063ca authored by Marc Alff's avatar Marc Alff

Bug#55873 short startup options do not work in 5.5

Merge cleanup, fixed a build warning:

my_getopt.c:156: warning: 'opt_found' may be used uninitialized in this function
parent 236f1a6d
...@@ -163,7 +163,6 @@ int handle_options(int *argc, char ***argv, ...@@ -163,7 +163,6 @@ int handle_options(int *argc, char ***argv,
int error, i; int error, i;
my_bool is_cmdline_arg= 1; my_bool is_cmdline_arg= 1;
LINT_INIT(opt_found);
/* handle_options() assumes arg0 (program name) always exists */ /* handle_options() assumes arg0 (program name) always exists */
DBUG_ASSERT(argc && *argc >= 1); DBUG_ASSERT(argc && *argc >= 1);
DBUG_ASSERT(argv && *argv); DBUG_ASSERT(argv && *argv);
...@@ -188,6 +187,7 @@ int handle_options(int *argc, char ***argv, ...@@ -188,6 +187,7 @@ int handle_options(int *argc, char ***argv,
{ {
char **first= pos; char **first= pos;
char *cur_arg= *pos; char *cur_arg= *pos;
opt_found= 0;
if (!is_cmdline_arg && (cur_arg == args_separator)) if (!is_cmdline_arg && (cur_arg == args_separator))
{ {
is_cmdline_arg= 1; is_cmdline_arg= 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment