Re: [PATCH] check_all_func_returns: Fix a test against "vfprintf"

Dan Carpenter <[email protected]> Thu, 26 May 2022 14:56:58 +0300
Newsgroups org.kernel.vger.smatch
Message-ID <20220526115658.GG2146@kadam>
On Thu, May 26, 2022 at 11:33:30AM +0200, Christophe JAILLET wrote:
> It is likely that a "== 0" is missing here, or the "if" will be always
> true. In such a case, it would be easier to remove it altogether.
> 
> Signed-off-by: Christophe JAILLET <[email protected]>
> ---
> Speculative. Un-tested.

Looks correct.  Applied.  This is for illumos, so I've added John to the
CC list.

regards,
dan carpenter

> ---
>  check_all_func_returns.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/check_all_func_returns.c b/check_all_func_returns.c
> index 1ff50433d57b..bd87e1adbc7a 100644
> --- a/check_all_func_returns.c
> +++ b/check_all_func_returns.c
> @@ -55,7 +55,7 @@ static void check_func_return(struct expression *expr)
>  	if (strcmp(func, "printf") == 0 || strcmp(func, "vprintf") == 0)
>  		return;
>  
> -	if (strcmp(func, "fprintf") == 0 || strcmp(func, "vfprintf")) {
> +	if (strcmp(func, "fprintf") == 0 || strcmp(func, "vfprintf") == 0) {
>  		const char *arg0 = expr_to_str(get_argument_from_call_expr(expr->args, 0));
>  
>  		if (arg0 != NULL &&
> -- 
> 2.34.1