From: Mahmoud Mandour Date: Sun, 14 Mar 2021 03:23:22 +0000 (+0200) Subject: tools/virtiofsd/buffer.c: replaced a calloc call with GLib's g_try_new0 X-Git-Tag: qemu-xen-4.16.0-rc4~150^2~6 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d14d4f4f1815dcf63fa6b90e9a34854977e42f84;p=qemu-xen.git tools/virtiofsd/buffer.c: replaced a calloc call with GLib's g_try_new0 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 Message-Id: <20210314032324.45142-7-ma.mandourr@gmail.com> Reviewed-by: Stefan Hajnoczi Signed-off-by: Dr. David Alan Gilbert --- 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; }