diff options
author | unknown <serg@sergbook.mylan> | 2005-01-08 21:25:31 +0100 |
---|---|---|
committer | unknown <serg@sergbook.mylan> | 2005-01-08 21:25:31 +0100 |
commit | 4c8d52aa80ce2a2131783bc2df5b02f21baa1c96 (patch) | |
tree | 2b9317949d667f9113933b7fd154a10693b5c05c /cmd-line-utils | |
parent | 9ad1b390fcf12ec7aa7b9fad157d6e0a61045b40 (diff) | |
download | mariadb-git-4c8d52aa80ce2a2131783bc2df5b02f21baa1c96.tar.gz |
few harmless warnings from automated code-checking tools fixed
client/mysql.cc:
few harmless warnings from automated code-checking tools fixed
cleanup
Diffstat (limited to 'cmd-line-utils')
-rw-r--r-- | cmd-line-utils/libedit/parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd-line-utils/libedit/parse.c b/cmd-line-utils/libedit/parse.c index b113353d464..d09b890c1ab 100644 --- a/cmd-line-utils/libedit/parse.c +++ b/cmd-line-utils/libedit/parse.c @@ -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); |