From 4c56856e05c6ab1468fe8ace4b73ac31b333990b Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 30 Sep 2011 15:39:57 +0200 Subject: Fix few 'may be used uninitialized' compiler warnings --- widgets/text/e-reflow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widgets/text') diff --git a/widgets/text/e-reflow.c b/widgets/text/e-reflow.c index 37cfef1e1b..296d732590 100644 --- a/widgets/text/e-reflow.c +++ b/widgets/text/e-reflow.c @@ -1398,7 +1398,7 @@ e_reflow_point (GnomeCanvasItem *item, gint cx, gint cy) { - GnomeCanvasItem *child; + GnomeCanvasItem *child = NULL; if (GNOME_CANVAS_ITEM_CLASS (e_reflow_parent_class)->point) child = GNOME_CANVAS_ITEM_CLASS (e_reflow_parent_class)->point (item, x, y, cx, cy); -- cgit