From: Anthony Liguori <anthony@codemonkey.ws>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH] Check fread() results to avoid gcc 4.6 warnings
Date: Fri, 05 Aug 2011 11:46:09 -0500 [thread overview]
Message-ID: <4E3C1E51.3040003@codemonkey.ws> (raw)
In-Reply-To: <1312181399-29841-1-git-send-email-david@gibson.dropbear.id.au>
On 08/01/2011 01:49 AM, David Gibson wrote:
> When compiling with gcc 4.6, some code in fw_cfg.c complains that fop_ret
> is assigned but not used (which is true). However, it looks like the
> meaningless assignments to fop_ret were done to suppress other gcc warnings
> due to the fact that fread() is labelled as warn_unused_result in glibc.
>
> This patch avoids both errors, by actually checking the fread() result code
> and dropping out with an error message if it fails.
>
> Signed-off-by: David Gibson<david@gibson.dropbear.id.au>
Applied. Thanks.
Regards,
Anthony Liguori
> ---
> hw/fw_cfg.c | 13 +++++++++++++
> 1 files changed, 13 insertions(+), 0 deletions(-)
>
> diff --git a/hw/fw_cfg.c b/hw/fw_cfg.c
> index a29db90..e4847b7 100644
> --- a/hw/fw_cfg.c
> +++ b/hw/fw_cfg.c
> @@ -87,6 +87,13 @@ static FILE *probe_splashfile(char *filename, int *file_sizep, int *file_typep)
> /* check magic ID */
> fseek(fp, 0L, SEEK_SET);
> fop_ret = fread(buf, 1, 2, fp);
> + if (fop_ret != 2) {
> + error_report("Could not read header from '%s': %s",
> + filename, strerror(errno));
> + fclose(fp);
> + fp = NULL;
> + return fp;
> + }
> filehead_value = (buf[0] + (buf[1]<< 8))& 0xffff;
> if (filehead_value == 0xd8ff) {
> file_type = JPG_FILE;
> @@ -181,6 +188,12 @@ static void fw_cfg_bootsplash(FWCfgState *s)
> boot_splash_filedata_size = file_size;
> fseek(fp, 0L, SEEK_SET);
> fop_ret = fread(boot_splash_filedata, 1, file_size, fp);
> + if (fop_ret != file_size) {
> + error_report("failed to read data from '%s'.",
> + boot_splash_filename);
> + fclose(fp);
> + return;
> + }
> fclose(fp);
> /* insert data */
> if (file_type == JPG_FILE) {
WARNING: multiple messages have this Message-ID (diff)
From: Anthony Liguori <anthony@codemonkey.ws>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Check fread() results to avoid gcc 4.6 warnings
Date: Fri, 05 Aug 2011 11:46:09 -0500 [thread overview]
Message-ID: <4E3C1E51.3040003@codemonkey.ws> (raw)
In-Reply-To: <1312181399-29841-1-git-send-email-david@gibson.dropbear.id.au>
On 08/01/2011 01:49 AM, David Gibson wrote:
> When compiling with gcc 4.6, some code in fw_cfg.c complains that fop_ret
> is assigned but not used (which is true). However, it looks like the
> meaningless assignments to fop_ret were done to suppress other gcc warnings
> due to the fact that fread() is labelled as warn_unused_result in glibc.
>
> This patch avoids both errors, by actually checking the fread() result code
> and dropping out with an error message if it fails.
>
> Signed-off-by: David Gibson<david@gibson.dropbear.id.au>
Applied. Thanks.
Regards,
Anthony Liguori
> ---
> hw/fw_cfg.c | 13 +++++++++++++
> 1 files changed, 13 insertions(+), 0 deletions(-)
>
> diff --git a/hw/fw_cfg.c b/hw/fw_cfg.c
> index a29db90..e4847b7 100644
> --- a/hw/fw_cfg.c
> +++ b/hw/fw_cfg.c
> @@ -87,6 +87,13 @@ static FILE *probe_splashfile(char *filename, int *file_sizep, int *file_typep)
> /* check magic ID */
> fseek(fp, 0L, SEEK_SET);
> fop_ret = fread(buf, 1, 2, fp);
> + if (fop_ret != 2) {
> + error_report("Could not read header from '%s': %s",
> + filename, strerror(errno));
> + fclose(fp);
> + fp = NULL;
> + return fp;
> + }
> filehead_value = (buf[0] + (buf[1]<< 8))& 0xffff;
> if (filehead_value == 0xd8ff) {
> file_type = JPG_FILE;
> @@ -181,6 +188,12 @@ static void fw_cfg_bootsplash(FWCfgState *s)
> boot_splash_filedata_size = file_size;
> fseek(fp, 0L, SEEK_SET);
> fop_ret = fread(boot_splash_filedata, 1, file_size, fp);
> + if (fop_ret != file_size) {
> + error_report("failed to read data from '%s'.",
> + boot_splash_filename);
> + fclose(fp);
> + return;
> + }
> fclose(fp);
> /* insert data */
> if (file_type == JPG_FILE) {
next prev parent reply other threads:[~2011-08-05 16:46 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-01 6:49 [Qemu-trivial] [PATCH] Check fread() results to avoid gcc 4.6 warnings David Gibson
2011-08-01 6:49 ` [Qemu-devel] " David Gibson
2011-08-01 10:19 ` [Qemu-trivial] " Stefan Hajnoczi
2011-08-01 10:19 ` [Qemu-devel] " Stefan Hajnoczi
2011-08-03 10:15 ` Stefan Hajnoczi
2011-08-03 10:15 ` [Qemu-devel] " Stefan Hajnoczi
2011-08-03 13:46 ` Stefan Berger
2011-08-03 13:46 ` [Qemu-devel] " Stefan Berger
2011-08-05 16:46 ` Anthony Liguori [this message]
2011-08-05 16:46 ` [Qemu-devel] " Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E3C1E51.3040003@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=david@gibson.dropbear.id.au \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.