From dcfe0b892559ca07a7afac6c3e048b4e980eae7f Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Tue, 24 Feb 2015 23:29:39 +0100 Subject: [PATCH] app: fix uninitialized boolean in gimp_paned_box_drag_drop() --- app/widgets/gimppanedbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/widgets/gimppanedbox.c b/app/widgets/gimppanedbox.c index 1f06d0326d..5317965591 100644 --- a/app/widgets/gimppanedbox.c +++ b/app/widgets/gimppanedbox.c @@ -450,7 +450,7 @@ gimp_paned_box_drag_drop (GtkWidget *widget, guint time) { GimpPanedBox *paned_box = GIMP_PANED_BOX (widget); - gboolean dropped; + gboolean dropped = FALSE; if (gimp_paned_box_will_handle_drag (paned_box->p->drag_handler, widget,