mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
few harmless warnings from automated code-checking tools fixed
client/mysql.cc: few harmless warnings from automated code-checking tools fixed cleanup
This commit is contained in:
parent
9ad1b390fc
commit
4c8d52aa80
4 changed files with 11 additions and 6 deletions
|
|
@ -87,7 +87,8 @@ parse_line(EditLine *el, const char *line)
|
|||
int argc;
|
||||
Tokenizer *tok;
|
||||
|
||||
tok = tok_init(NULL);
|
||||
if (!(tok = tok_init(NULL)))
|
||||
return -1;
|
||||
tok_line(tok, line, &argc, &argv);
|
||||
argc = el_parse(el, argc, argv);
|
||||
tok_end(tok);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue