diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-06-29 20:47:08 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-06-29 20:47:08 +0200 |
commit | 4db6e1e4a502df5a4b30aed60552314533b35d79 (patch) | |
tree | 24e1d9f8f2d0db6cd56a3f6d005a349c85269383 /client | |
parent | d5cd33450413816f8696125cd66c8393921e6267 (diff) | |
download | mariadb-git-4db6e1e4a502df5a4b30aed60552314533b35d79.tar.gz |
uninitialized variable
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqltest.cc b/client/mysqltest.cc index f5ee94f1839..98e35136b2a 100644 --- a/client/mysqltest.cc +++ b/client/mysqltest.cc @@ -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; |