From patchwork Tue Aug 31 07:30:38 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [6/6] load_multiboot(): get_image_size() returns int Date: Mon, 30 Aug 2010 21:30:38 -0000 From: Jes Sorensen X-Patchwork-Id: 63208 Message-Id: <1283239838-20349-7-git-send-email-Jes.Sorensen@redhat.com> To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, Jes.Sorensen@redhat.com From: Jes Sorensen Do not store return of get_image_size() in a uint32_t as it makes it impossible to detect error returns from get_image_size. Signed-off-by: Jes Sorensen --- hw/multiboot.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/multiboot.c b/hw/multiboot.c index dc980e6..f9097a2 100644 --- a/hw/multiboot.c +++ b/hw/multiboot.c @@ -252,7 +252,7 @@ int load_multiboot(void *fw_cfg, do { char *next_space; - uint32_t mb_mod_length; + int mb_mod_length; uint32_t offs = mbs.mb_buf_size; next_initrd = strchr(initrd_filename, ',');