projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e6c59a
)
gst/rtpmanager/rtpsource.c: Fix unref of buffer using the wrong function. Fixes...
author
Olivier Crete
<tester@tester.ca>
Fri, 25 Jan 2008 01:44:27 +0000
(
01:44
+0000)
committer
Tim-Philipp Müller
<tim.muller@collabora.co.uk>
Tue, 11 Aug 2009 01:30:33 +0000
(
02:30
+0100)
Original commit message from CVS:
Patch by: Olivier Crete <tester@tester.ca>
* gst/rtpmanager/rtpsource.c: Fix unref of buffer using the
wrong function. Fixes #511920
gst/rtpmanager/rtpsource.c
patch
|
blob
|
history
diff --git
a/gst/rtpmanager/rtpsource.c
b/gst/rtpmanager/rtpsource.c
index
c48c8d0
..
1938324
100644
(file)
--- a/
gst/rtpmanager/rtpsource.c
+++ b/
gst/rtpmanager/rtpsource.c
@@
-878,7
+878,7
@@
rtp_source_process_rtp (RTPSource * src, GstBuffer * buffer,
/* remove packets from queue if there are too many */
while (g_queue_get_length (src->packets) > RTP_MAX_PROBATION_LEN) {
q = g_queue_pop_head (src->packets);
- gst_
object
_unref (q);
+ gst_
buffer
_unref (q);
}
goto done;
}