gst-libs/gst/riff/riff-read.c: Added missing refcount, fixes bug #144425

Original commit message from CVS:
2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali.org>

* gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
Added missing refcount, fixes bug #144425
Cheers Tim for finding the bug
This commit is contained in:
Zaheer Abbas Merali 2004-06-15 21:25:36 +00:00
parent 5e9b6aab3b
commit 0cf31ef992
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali.org>
* gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
Added missing refcount, fixes bug #144425
Cheers Tim for finding the bug
2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
* sys/v4l/gstv4l.c: (plugin_init):

View file

@ -180,6 +180,7 @@ gst_riff_peek_head (GstRiffRead * riff,
/* Here, we might encounter EOS */
gst_bytestream_get_status (riff->bs, &remaining, &event);
if (GST_IS_EVENT (event)) {
gst_event_ref (event);
gst_pad_event_default (riff->sinkpad, event);
if (GST_EVENT_TYPE (event) == GST_EVENT_EOS)
return FALSE;