Technically this function should also return an error is rt is NULL. Which error code would apply for this?
On Wed, 18 Sep 2019 at 21:42, phunkyfish <phunkyf...@gmail.com> wrote: > --- > libavformat/rtsp.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c > index c153cac88b..5e8adfaf3c 100644 > --- a/libavformat/rtsp.c > +++ b/libavformat/rtsp.c > @@ -1318,6 +1318,9 @@ static int > rtsp_send_cmd_with_content_async(AVFormatContext *s, > char buf[4096], *out_buf; > char base64buf[AV_BASE64_SIZE(sizeof(buf))]; > > + if (rt && !rt->rtsp_hd_out) > + return ENOTCONN; > + > /* Add in RTSP headers */ > out_buf = buf; > rt->seq++; > -- > 2.20.1 (Apple Git-117) > > _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".