All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Daniel P. Berrangé" <berrange@redhat.com>
To: "Christian S. Lima" <christianslima@proton.me>
Cc: qemu-devel@nongnu.org, Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [PATCH] audio: converts malloc to g_new and free to g_free
Date: Fri, 19 Jun 2026 09:12:47 +0100	[thread overview]
Message-ID: <ajT5_xu7JtzGINWD@redhat.com> (raw)
In-Reply-To: <20260619080934.237834-1-christianslima@proton.me>

On Fri, Jun 19, 2026 at 08:09:42AM +0000, Christian S. Lima wrote:
> Following the qemu coding style change malloc to g_new, the advantage
> are that g_new can catch multiplication overflowing size_t and allow
> catch more type errors because it returns the type itself.
> 
> Signed-off-by: Christian S. Lima <christianslima@proton.me>
> ---
>  hw/audio/fmopl.c | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
> 
> diff --git a/hw/audio/fmopl.c b/hw/audio/fmopl.c
> index a63ad0f04d..19c4b388f3 100644
> --- a/hw/audio/fmopl.c
> +++ b/hw/audio/fmopl.c
> @@ -607,24 +607,24 @@ static int OPLOpenTable( void )
>  	double pom;
>  
>  	/* allocate dynamic tables */
> -	if( (TL_TABLE = malloc(TL_MAX*2*sizeof(int32_t))) == NULL)
> +	if( (TL_TABLE = g_new(int32_t, TL_MAX * 2)) == NULL)

g_new cannot fail, so all checks for NULL must be removed too.

Unless this is a performance critical path, we'll also prefer
g_new0 over g_new, so that all memory is guaranteed zero-initialized

>  		return 0;
> -	if( (SIN_TABLE = malloc(SIN_ENT*4 *sizeof(int32_t *))) == NULL)
> +	if( (SIN_TABLE = g_new(int32_t *, SIN_ENT * 4)) == NULL)
>  	{
> -		free(TL_TABLE);
> +		g_free(TL_TABLE);
>  		return 0;
>  	}
> -	if( (AMS_TABLE = malloc(AMS_ENT*2 *sizeof(int32_t))) == NULL)
> +	if( (AMS_TABLE = g_new(int32_t, AMS_ENT * 2)) == NULL)
>  	{
> -		free(TL_TABLE);
> -		free(SIN_TABLE);
> +		g_free(TL_TABLE);
> +		g_free(SIN_TABLE);
>  		return 0;
>  	}
> -	if( (VIB_TABLE = malloc(VIB_ENT*2 *sizeof(int32_t))) == NULL)
> +	if( (VIB_TABLE = g_new(int32_t, VIB_ENT * 2)) == NULL)
>  	{
> -		free(TL_TABLE);
> -		free(SIN_TABLE);
> -		free(AMS_TABLE);
> +		g_free(TL_TABLE);
> +		g_free(SIN_TABLE);
> +		g_free(AMS_TABLE);
>  		return 0;
>  	}
>      ENV_CURVE = g_new(int32_t, 2 * EG_ENT + 1);
> -- 
> 2.53.0
> 
> 
> 

With regards,
Daniel
-- 
|: https://berrange.com       ~~        https://hachyderm.io/@berrange :|
|: https://libvirt.org          ~~          https://entangle-photo.org :|
|: https://pixelfed.art/berrange   ~~    https://fstop138.berrange.com :|



  reply	other threads:[~2026-06-19  8:13 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-19  8:09 [PATCH] audio: converts malloc to g_new and free to g_free Christian S. Lima
2026-06-19  8:12 ` Daniel P. Berrangé [this message]
2026-06-19  9:22 ` Peter Maydell
2026-06-19 21:50   ` Christian

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ajT5_xu7JtzGINWD@redhat.com \
    --to=berrange@redhat.com \
    --cc=christianslima@proton.me \
    --cc=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.