mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
pcapparse: Remove unneeded unref and only set pad caps if we have caps
Fixes crashes due to invalid unrefs. https://bugzilla.gnome.org/show_bug.cgi?id=705957
This commit is contained in:
parent
ddee83ef0b
commit
131c263248
1 changed files with 2 additions and 3 deletions
|
@ -494,7 +494,8 @@ gst_pcap_parse_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
|
||||||
GST_CLOCK_TIME_IS_VALID (self->cur_ts)) {
|
GST_CLOCK_TIME_IS_VALID (self->cur_ts)) {
|
||||||
GstSegment segment;
|
GstSegment segment;
|
||||||
|
|
||||||
gst_pad_set_caps (self->src_pad, self->caps);
|
if (self->caps)
|
||||||
|
gst_pad_set_caps (self->src_pad, self->caps);
|
||||||
gst_segment_init (&segment, GST_FORMAT_TIME);
|
gst_segment_init (&segment, GST_FORMAT_TIME);
|
||||||
segment.start = self->cur_ts;
|
segment.start = self->cur_ts;
|
||||||
gst_pad_push_event (self->src_pad,
|
gst_pad_push_event (self->src_pad,
|
||||||
|
@ -607,7 +608,5 @@ gst_pcap_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_object_unref (self);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue