fix coverity 290266

This commit is contained in:
iceman1001 2020-06-02 11:27:47 +02:00
parent 19f2c0ef89
commit 2daa2c09fd

View file

@ -146,9 +146,10 @@ int CLIParserParseStringEx(CLIParserContext *ctx, const char *str, void *vargtab
}
void CLIParserFree(CLIParserContext *ctx) {
arg_freetable(ctx->argtable, ctx->argtableLen);
free(ctx);
return;
if (ctx) {
arg_freetable(ctx->argtable, ctx->argtableLen);
free(ctx);
}
}
// convertors