From d500ffc3002f0919926355dbced1f32d526c20f8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 9 May 2013 17:22:16 +0200 Subject: [PATCH] pad: Fix uninitialized variable compiler warning --- gst/gstpad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstpad.c b/gst/gstpad.c index 576074d..416d2c5 100644 --- a/gst/gstpad.c +++ b/gst/gstpad.c @@ -5219,7 +5219,7 @@ static gboolean foreach_dispatch_function (GstPad * pad, PadEvent * ev, gpointer user_data) { ForeachDispatch *data = user_data; - gboolean ret; + gboolean ret = TRUE; if (ev->event) { GST_OBJECT_UNLOCK (pad); -- 2.7.4