diff options
author | serg@sergbook.mylan <> | 2005-01-08 21:25:31 +0100 |
---|---|---|
committer | serg@sergbook.mylan <> | 2005-01-08 21:25:31 +0100 |
commit | 247052fecccae6672bfd26bbfeec53d77340e322 (patch) | |
tree | 2b9317949d667f9113933b7fd154a10693b5c05c /cmd-line-utils | |
parent | 77bc68f99d48547083f97e26412ef2693e343dc8 (diff) | |
download | mariadb-git-247052fecccae6672bfd26bbfeec53d77340e322.tar.gz |
few harmless warnings from automated code-checking tools fixed
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); |