Skip to content
Permalink
Browse files
MDEV-5313 Improving audit plugin API.
Type conversion bug fixed.
  • Loading branch information
Alexey Botchkov committed Jan 17, 2019
1 parent 5fb4e4a commit dd03cb3
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1862,7 +1862,7 @@ static enum json_types smart_read_value(json_engine_t *je,
if (json_skip_level(je))
goto err_return;

*value_len= (char *) je->s.c_str - *value;
*value_len= (int) ((char *) je->s.c_str - *value);
}

return je->value_type;

0 comments on commit dd03cb3

Please sign in to comment.