lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <ab107cb4-3ba5-9d22-2e40-fada05c3579f@xs4all.nl>
Date:   Tue, 11 Jan 2022 10:58:10 +0100
From:   Hans Verkuil <hverkuil@...all.nl>
To:     Jiasheng Jiang <jiasheng@...as.ac.cn>, dwlsalmeida@...il.com,
        mchehab@...nel.org
Cc:     linux-media@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] media: vidtv: Check for null return of vzalloc

On 31/12/2021 08:50, Jiasheng Jiang wrote:
> As the possible failure of the vzalloc(), e->encoder_buf might be NULL.
> Therefore, it should be better to check it like the kzalloc() in order
> to guarantee the success of the initialization.
> 
> Fixes: f90cf6079bf6 ("media: vidtv: add a bridge driver")
> Signed-off-by: Jiasheng Jiang <jiasheng@...as.ac.cn>
> ---
>  drivers/media/test-drivers/vidtv/vidtv_s302m.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/drivers/media/test-drivers/vidtv/vidtv_s302m.c b/drivers/media/test-drivers/vidtv/vidtv_s302m.c
> index d79b65854627..d7907f1ae530 100644
> --- a/drivers/media/test-drivers/vidtv/vidtv_s302m.c
> +++ b/drivers/media/test-drivers/vidtv/vidtv_s302m.c
> @@ -455,6 +455,11 @@ struct vidtv_encoder
>  		e->name = kstrdup(args.name, GFP_KERNEL);
>  
>  	e->encoder_buf = vzalloc(VIDTV_S302M_BUF_SZ);
> +	if (!e->encoder_buf) {

This doesn't free e->name!

Actually, the same issue is also present later in this function:

        ctx = kzalloc(priv_sz, GFP_KERNEL);
        if (!ctx) {
                kfree(e);
                return NULL;
        }

Regards,

	Hans

> +		kfree(e);
> +		return NULL;
> +	}
> +
>  	e->encoder_buf_sz = VIDTV_S302M_BUF_SZ;
>  	e->encoder_buf_offset = 0;
>  

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ