rtspsrc: Don't dereference NULL if a suitable stream for the AUX element can't be found

CID 1258717
This commit is contained in:
Sebastian Dröge 2014-12-18 11:50:33 +01:00
parent 13479aa390
commit d18b893d28

View file

@ -3136,6 +3136,10 @@ request_aux_receiver (GstElement * rtpbin, guint sessid, GstRTSPSrc * src)
GstRTSPStream *stream;
stream = find_stream (src, &sessid, (gpointer) find_stream_by_id);
if (!stream) {
GST_WARNING_OBJECT (src, "Stream %u not found", sessid);
return NULL;
}
GST_INFO_OBJECT (src, "creating retransmision receiver for session %u "
"with map %" GST_PTR_FORMAT, sessid, stream->rtx_pt_map);