mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 12:15:19 +00:00
unref event instead of freeing it
Original commit message from CVS: unref event instead of freeing it
This commit is contained in:
parent
fcb10a6c85
commit
88d5690b24
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ gst_bytestream_destroy (GstByteStream * bs)
|
||||||
GSList *walk;
|
GSList *walk;
|
||||||
|
|
||||||
if (bs->event)
|
if (bs->event)
|
||||||
gst_event_free (bs->event);
|
gst_event_unref (bs->event);
|
||||||
|
|
||||||
walk = bs->buflist;
|
walk = bs->buflist;
|
||||||
while (walk) {
|
while (walk) {
|
||||||
|
|
Loading…
Reference in a new issue