From: Max Reitz Date: Tue, 29 Apr 2014 17:03:16 +0000 (+0200) Subject: block/vdi: Error out immediately in vdi_create() X-Git-Tag: v2.1.0-rc0~152^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0549ea8b6d3ed4eba9a3bd0abfaed3af5de69873;p=thirdparty%2Fqemu.git block/vdi: Error out immediately in vdi_create() Currently, if an error occurs during the part of vdi_create() which actually writes the image, the function stores -errno, but continues anyway. Instead of trying to write data which (if it can be written at all) does not make any sense without the operations before succeeding (e.g., writing the image header), just error out immediately. Signed-off-by: Max Reitz Reviewed-by: Stefan Weil Signed-off-by: Kevin Wolf --- diff --git a/block/vdi.c b/block/vdi.c index 81faa25f8a6..27737af555b 100644 --- a/block/vdi.c +++ b/block/vdi.c @@ -756,6 +756,7 @@ static int vdi_create(const char *filename, QEMUOptionParameter *options, vdi_header_to_le(&header); if (write(fd, &header, sizeof(header)) < 0) { result = -errno; + goto close_and_exit; } if (bmap_size > 0) { @@ -769,6 +770,8 @@ static int vdi_create(const char *filename, QEMUOptionParameter *options, } if (write(fd, bmap, bmap_size) < 0) { result = -errno; + g_free(bmap); + goto close_and_exit; } g_free(bmap); } @@ -776,10 +779,12 @@ static int vdi_create(const char *filename, QEMUOptionParameter *options, if (image_type == VDI_TYPE_STATIC) { if (ftruncate(fd, sizeof(header) + bmap_size + blocks * block_size)) { result = -errno; + goto close_and_exit; } } - if (close(fd) < 0) { +close_and_exit: + if ((close(fd) < 0) && !result) { result = -errno; }