projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae2dd54
)
flxdec: Don't unref() parent in the chain function
author
Sebastian Dröge
<sebastian@centricular.com>
Wed, 23 Nov 2016 09:20:49 +0000
(11:20 +0200)
committer
Sebastian Dröge
<sebastian@centricular.com>
Wed, 23 Nov 2016 09:20:49 +0000
(11:20 +0200)
We don't own the reference here, it is owned by the caller and given to
us for the scope of this function. Leftover mistake from 0.10 porting.
https://bugzilla.gnome.org/show_bug.cgi?id=774897
gst/flx/gstflxdec.c
patch
|
blob
|
history
diff --git
a/gst/flx/gstflxdec.c
b/gst/flx/gstflxdec.c
index
e675c99
..
a237976
100644
(file)
--- a/
gst/flx/gstflxdec.c
+++ b/
gst/flx/gstflxdec.c
@@
-677,7
+677,6
@@
wrong_type:
{
GST_ELEMENT_ERROR (flxdec, STREAM, WRONG_TYPE, (NULL),
("not a flx file (type %x)", flxh->type));
- gst_object_unref (flxdec);
return GST_FLOW_ERROR;
}
}