From: Markus Armbruster Date: Wed, 4 Dec 2019 09:36:12 +0000 (+0100) Subject: exec: Fix file_ram_alloc() error API violations X-Git-Tag: v5.0.0-rc0~176^2~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=56e477a56399c4e6d7fc0f6227fd9c475f83a8ce;p=thirdparty%2Fqemu.git exec: Fix file_ram_alloc() error API violations When os_mem_prealloc() fails, file_ram_alloc() calls qemu_ram_munmap() and returns null. Except it doesn't when its @errp argument is null, because it checks for failure with (errp && *errp). Introduced in commit 056b68af77 "fix qemu exit on memory hotplug when allocation fails at prealloc time". No caller actually passes null. Fix anyway: splice in a local Error *err, and error_propagate(). Cc: Igor Mammedov Signed-off-by: Markus Armbruster Reviewed-by: Igor Mammedov Message-Id: <20191204093625.14836-6-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé --- diff --git a/exec.c b/exec.c index a34c3481840..6bd4aa1d878 100644 --- a/exec.c +++ b/exec.c @@ -1843,6 +1843,7 @@ static void *file_ram_alloc(RAMBlock *block, bool truncate, Error **errp) { + Error *err = NULL; MachineState *ms = MACHINE(qdev_get_machine()); void *area; @@ -1900,8 +1901,9 @@ static void *file_ram_alloc(RAMBlock *block, } if (mem_prealloc) { - os_mem_prealloc(fd, area, memory, ms->smp.cpus, errp); - if (errp && *errp) { + os_mem_prealloc(fd, area, memory, ms->smp.cpus, &err); + if (err) { + error_propagate(errp, err); qemu_ram_munmap(fd, area, memory); return NULL; }