aboutsummaryrefslogtreecommitdiff
path: root/tools/virtiofsd
diff options
context:
space:
mode:
authorMahmoud Mandour <ma.mandourr@gmail.com>2021-04-20 17:46:38 +0200
committerDr. David Alan Gilbert <dgilbert@redhat.com>2021-05-06 19:47:44 +0100
commitf90a2d68c073c6a0a57790fae6b64eeb14ae78bb (patch)
tree306ebb589a0139a0a6e785fdd0f8a41040a8ecc1 /tools/virtiofsd
parent01c6c6f982196458d60d4d7cfa963c38947949f5 (diff)
downloadqemu-f90a2d68c073c6a0a57790fae6b64eeb14ae78bb.zip
qemu-f90a2d68c073c6a0a57790fae6b64eeb14ae78bb.tar.gz
qemu-f90a2d68c073c6a0a57790fae6b64eeb14ae78bb.tar.bz2
virtiofsd: Changed allocations of fuse_session to GLib's functions
Replaced the allocation and deallocation of fuse_session structs from calloc() and free() calls to g_try_new0() and g_free(). Signed-off-by: Mahmoud Mandour <ma.mandourr@gmail.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Message-Id: <20210420154643.58439-4-ma.mandourr@gmail.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'tools/virtiofsd')
-rw-r--r--tools/virtiofsd/fuse_lowlevel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/virtiofsd/fuse_lowlevel.c b/tools/virtiofsd/fuse_lowlevel.c
index 88496f9..7fe2cef 100644
--- a/tools/virtiofsd/fuse_lowlevel.c
+++ b/tools/virtiofsd/fuse_lowlevel.c
@@ -2470,7 +2470,7 @@ void fuse_session_destroy(struct fuse_session *se)
free(se->vu_socket_path);
se->vu_socket_path = NULL;
- free(se);
+ g_free(se);
}
@@ -2493,7 +2493,7 @@ struct fuse_session *fuse_session_new(struct fuse_args *args,
return NULL;
}
- se = (struct fuse_session *)calloc(1, sizeof(struct fuse_session));
+ se = g_try_new0(struct fuse_session, 1);
if (se == NULL) {
fuse_log(FUSE_LOG_ERR, "fuse: failed to allocate fuse object\n");
goto out1;
@@ -2553,7 +2553,7 @@ struct fuse_session *fuse_session_new(struct fuse_args *args,
out4:
fuse_opt_free_args(args);
out2:
- free(se);
+ g_free(se);
out1:
return NULL;
}