Commit 30db4e1f authored by Alexey Botchkov's avatar Alexey Botchkov

MDEV-13786 compiler complains about uninitialized variable.

        '=0' added to meke the compiler happy.
parent 0cd73186
......@@ -873,7 +873,7 @@ longlong Item_func_json_extract::val_int()
json_value_types type;
char *value;
int value_len;
longlong i;
longlong i= 0;
if (read_json(NULL, &type, &value, &value_len) != NULL)
{
......
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