Commit fc40f81e authored by Sergei Golubchik's avatar Sergei Golubchik

a case of uninitialized variable

parent e4f97393
...@@ -3843,7 +3843,7 @@ static int test_plugin_options(MEM_ROOT *tmp_root, struct st_plugin_int *tmp, ...@@ -3843,7 +3843,7 @@ static int test_plugin_options(MEM_ROOT *tmp_root, struct st_plugin_int *tmp,
&tmp->mem_root : &plugin_vars_mem_root; &tmp->mem_root : &plugin_vars_mem_root;
st_mysql_sys_var **opt; st_mysql_sys_var **opt;
my_option *opts= NULL; my_option *opts= NULL;
int error; int error= 1;
struct st_bookmark *var; struct st_bookmark *var;
uint len=0, count= EXTRA_OPTIONS; uint len=0, count= EXTRA_OPTIONS;
st_ptr_backup *tmp_backup= 0; st_ptr_backup *tmp_backup= 0;
......
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