Commit 4db6e1e4 authored by Sergei Golubchik's avatar Sergei Golubchik

uninitialized variable

parent d5cd3345
......@@ -6522,7 +6522,7 @@ static inline bool is_escape_char(char c, char in_string)
int read_line(char *buf, int size)
{
char c, UNINIT_VAR(last_quote), last_char= 0;
char c, last_quote=0, last_char= 0;
char *p= buf, *buf_end= buf + size - 1;
int skip_char= 0;
my_bool have_slash= FALSE;
......
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