From 864f682465d626b330654d4e6bf6fee3565667a3 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Tue, 5 Oct 2010 19:24:54 +0000 Subject: Squash warnings svn path=/trunk/netsurf/; revision=10866 --- framebuffer/gui.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'framebuffer/gui.c') diff --git a/framebuffer/gui.c b/framebuffer/gui.c index 2d0598bc3..301bd2e93 100644 --- a/framebuffer/gui.c +++ b/framebuffer/gui.c @@ -940,7 +940,7 @@ create_toolbar(struct gui_window *gw, fbtk_widget_t *widget; int xpos; /* The position of the next widget. */ - int xlhs; /* extent of the left hand side widgets */ + int xlhs = 0; /* extent of the left hand side widgets */ int xdir = 1; /* the direction of movement + or - 1 */ const char *itmtype; /* type of the next item */ @@ -1117,13 +1117,16 @@ create_toolbar(struct gui_window *gw, break; default: + widget = NULL; xdir = 0; LOG(("Unknown element %c in toolbar layout", *itmtype)); break; } - xpos += (xdir * (fbtk_get_width(widget) + padding)); + if (widget != NULL) { + xpos += (xdir * (fbtk_get_width(widget) + padding)); + } LOG(("xpos is %d",xpos)); -- cgit v1.2.3