* [PATCH] util/grub-gen-asciih: fix build warning->error
@ 2014-05-28 13:06 Trevor Woerner
2014-06-21 18:27 ` Vladimir 'φ-coder/phcoder' Serbinenko
0 siblings, 1 reply; 2+ messages in thread
From: Trevor Woerner @ 2014-05-28 13:06 UTC (permalink / raw)
To: grub-devel; +Cc: patches
Using a GCC 4.8.1 cross-compiler for ARM a "may be used uninitialized in this
function" warning is generated which is converted to an error via -Werror.
This patch eliminates the warning by initializing the structure then checking
it has been filled in correctly after calling add_glyph().
Signed-off-by: Trevor Woerner <trevor.woerner@linaro.org>
---
util/grub-gen-asciih.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/util/grub-gen-asciih.c b/util/grub-gen-asciih.c
index e01447a..c143afd 100644
--- a/util/grub-gen-asciih.c
+++ b/util/grub-gen-asciih.c
@@ -131,6 +131,8 @@ write_font_ascii_bitmap (FILE *file, FT_Face face)
struct grub_glyph_info glyph;
int char_code;
+ memset (&glyph, 0, sizeof(glyph));
+
fprintf (file, "/* THIS CHUNK OF BYTES IS AUTOMATICALLY GENERATED */\n");
fprintf (file, "unsigned char ascii_bitmaps[] =\n");
fprintf (file, "{\n");
@@ -144,6 +146,12 @@ write_font_ascii_bitmap (FILE *file, FT_Face face)
return;
add_glyph (glyph_idx, face, char_code, &glyph);
+ if (glyph.bitmap == 0)
+ {
+ fprintf (stderr, "grub-gen-asciih: add_glyph not successful");
+ exit (1);
+ }
+
if (glyph.width == 8 && glyph.height == 16
&& glyph.x_ofs == 0 && glyph.y_ofs == 0)
{
--
1.9.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] util/grub-gen-asciih: fix build warning->error
2014-05-28 13:06 [PATCH] util/grub-gen-asciih: fix build warning->error Trevor Woerner
@ 2014-06-21 18:27 ` Vladimir 'φ-coder/phcoder' Serbinenko
0 siblings, 0 replies; 2+ messages in thread
From: Vladimir 'φ-coder/phcoder' Serbinenko @ 2014-06-21 18:27 UTC (permalink / raw)
To: The development of GNU GRUB
[-- Attachment #1: Type: text/plain, Size: 1484 bytes --]
On 28.05.2014 15:06, Trevor Woerner wrote:
> Using a GCC 4.8.1 cross-compiler for ARM a "may be used uninitialized in this
> function" warning is generated which is converted to an error via -Werror.
> This patch eliminates the warning by initializing the structure then checking
> it has been filled in correctly after calling add_glyph().
>
Fixed few problems and applied, thanks.
> Signed-off-by: Trevor Woerner <trevor.woerner@linaro.org>
> ---
> util/grub-gen-asciih.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/util/grub-gen-asciih.c b/util/grub-gen-asciih.c
> index e01447a..c143afd 100644
> --- a/util/grub-gen-asciih.c
> +++ b/util/grub-gen-asciih.c
> @@ -131,6 +131,8 @@ write_font_ascii_bitmap (FILE *file, FT_Face face)
> struct grub_glyph_info glyph;
> int char_code;
>
> + memset (&glyph, 0, sizeof(glyph));
> +
> fprintf (file, "/* THIS CHUNK OF BYTES IS AUTOMATICALLY GENERATED */\n");
> fprintf (file, "unsigned char ascii_bitmaps[] =\n");
> fprintf (file, "{\n");
> @@ -144,6 +146,12 @@ write_font_ascii_bitmap (FILE *file, FT_Face face)
> return;
> add_glyph (glyph_idx, face, char_code, &glyph);
>
> + if (glyph.bitmap == 0)
> + {
> + fprintf (stderr, "grub-gen-asciih: add_glyph not successful");
> + exit (1);
> + }
> +
> if (glyph.width == 8 && glyph.height == 16
> && glyph.x_ofs == 0 && glyph.y_ofs == 0)
> {
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 274 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-06-22 1:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-28 13:06 [PATCH] util/grub-gen-asciih: fix build warning->error Trevor Woerner
2014-06-21 18:27 ` Vladimir 'φ-coder/phcoder' Serbinenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).