pad: fix event type check
authorWim Taymans <wim.taymans@collabora.co.uk>
Tue, 5 Jun 2012 07:00:01 +0000 (09:00 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Tue, 5 Jun 2012 07:00:01 +0000 (09:00 +0200)
gst/gstpad.c

index fd672ab721041d734ad18a9267b98a49eb43fed5..ab21a0075c85633364a95b177cb7d7604dcc8a1b 100644 (file)
@@ -3187,7 +3187,7 @@ push_sticky (GstPad * pad, PadEvent * ev, gpointer user_data)
       /* not linked is not a problem, we are sticky so the event will be
        * sent later but only for non-EOS events */
       GST_DEBUG_OBJECT (pad, "pad was not linked");
-      if (GST_EVENT_TYPE (ev) != GST_EVENT_EOS)
+      if (GST_EVENT_TYPE (event) != GST_EVENT_EOS)
         data->ret = GST_FLOW_OK;
       /* fallthrough */
     default: