qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 6/8] tools/virtiofsd/buffer.c: replaced a calloc call with GL


From: Dr. David Alan Gilbert
Subject: Re: [PATCH 6/8] tools/virtiofsd/buffer.c: replaced a calloc call with GLib's g_try_new0
Date: Tue, 25 May 2021 20:01:21 +0100
User-agent: Mutt/2.0.7 (2021-05-04)

* Mahmoud Mandour (ma.mandourr@gmail.com) wrote:
> Replaced a call to calloc() and its respective free() call
> with GLib's g_try_new0() and g_free() calls.
> 
> Signed-off-by: Mahmoud Mandour <ma.mandourr@gmail.com>

6 & 7 queued (sorry for the delay)

> ---
>  tools/virtiofsd/buffer.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/virtiofsd/buffer.c b/tools/virtiofsd/buffer.c
> index 874f01c488..b5f04be356 100644
> --- a/tools/virtiofsd/buffer.c
> +++ b/tools/virtiofsd/buffer.c
> @@ -37,7 +37,7 @@ static ssize_t fuse_buf_writev(struct fuse_buf *out_buf,
>      struct iovec *iov;
>      int fd = out_buf->fd;
>  
> -    iov = calloc(iovcnt, sizeof(struct iovec));
> +    iov = g_try_new0(struct iovec, iovcnt);
>      if (!iov) {
>          return -ENOMEM;
>      }
> @@ -61,7 +61,7 @@ static ssize_t fuse_buf_writev(struct fuse_buf *out_buf,
>          res = -errno;
>      }
>  
> -    free(iov);
> +    g_free(iov);
>      return res;
>  }
>  
> -- 
> 2.25.1
> 
> 
-- 
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK




reply via email to

[Prev in Thread] Current Thread [Next in Thread]