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
@ -494,7 +494,8 @@ gst_pcap_parse_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
|
||||
GST_CLOCK_TIME_IS_VALID (self->cur_ts)) {
|
||||
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);
|
||||
segment.start = self->cur_ts;
|
||||
gst_pad_push_event (self->src_pad,
|
||||
@ -607,7 +608,5 @@ gst_pcap_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
||||
break;
|
||||
}
|
||||
|
||||
gst_object_unref (self);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user