From: Michael S. Tsirkin Date: Sun, 25 Oct 2015 15:07:45 +0000 (+0200) Subject: mmap-alloc: fix error handling X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9d4ec9370a36f8a564e1ba05519328c0bd60da13;p=qemu.git mmap-alloc: fix error handling Existing callers are checking for MAP_FAILED, so we should return that on error. Reported-by: Paolo Bonzini Signed-off-by: Michael S. Tsirkin --- diff --git a/util/mmap-alloc.c b/util/mmap-alloc.c index 13942694cc..c37acbe58e 100644 --- a/util/mmap-alloc.c +++ b/util/mmap-alloc.c @@ -26,7 +26,7 @@ void *qemu_ram_mmap(int fd, size_t size, size_t align, bool shared) void *ptr1; if (ptr == MAP_FAILED) { - return NULL; + return MAP_FAILED; } /* Make sure align is a power of 2 */ @@ -41,7 +41,7 @@ void *qemu_ram_mmap(int fd, size_t size, size_t align, bool shared) fd, 0); if (ptr1 == MAP_FAILED) { munmap(ptr, total); - return NULL; + return MAP_FAILED; } ptr += offset;