aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2021-01-26 13:42:40 +0100
committerLaurent Vivier <laurent@vivier.eu>2021-03-09 21:41:52 +0100
commitf2a6fe7b3af726c31360678cf4f55829dae32505 (patch)
tree9e75bfd9b1cb190b23b17f122273f58871d4724e /hw
parent166a1cf404cdea4c5839e3bd3028a6d28cb25b43 (diff)
downloadqemu-f2a6fe7b3af726c31360678cf4f55829dae32505.zip
qemu-f2a6fe7b3af726c31360678cf4f55829dae32505.tar.gz
qemu-f2a6fe7b3af726c31360678cf4f55829dae32505.tar.bz2
vhost_user_gpu: Drop dead check for g_malloc() failure
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-Id: <20210126124240.2081959-3-armbru@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw')
-rw-r--r--hw/display/vhost-user-gpu.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/display/vhost-user-gpu.c b/hw/display/vhost-user-gpu.c
index a01f931..6cdaa1c 100644
--- a/hw/display/vhost-user-gpu.c
+++ b/hw/display/vhost-user-gpu.c
@@ -325,7 +325,6 @@ vhost_user_gpu_chr_read(void *opaque)
}
msg = g_malloc(VHOST_USER_GPU_HDR_SIZE + size);
- g_return_if_fail(msg != NULL);
r = qemu_chr_fe_read_all(&g->vhost_chr,
(uint8_t *)&msg->payload, size);