ext/faac/gstfaac.c: Prevent endless loop if buffer alloc error.

Original commit message from CVS:
* ext/faac/gstfaac.c: (gst_faac_sink_event):
Prevent endless loop if buffer alloc error.
This commit is contained in:
Mark Nauwelaerts 2008-10-27 16:32:49 +00:00
parent 967088f074
commit c7b374abcb
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-10-27 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
* ext/faac/gstfaac.c: (gst_faac_sink_event):
Prevent endless loop if buffer alloc error.
2008-10-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/flv/gstflvdemux.c: (gst_flv_demux_chain),

View file

@ -501,7 +501,8 @@ gst_faac_sink_event (GstPad * pad, GstEvent * event)
gst_buffer_unref (outbuf);
ret = FALSE;
}
}
} else
ret = FALSE;
}
ret = gst_pad_event_default (pad, event);
break;