From 9a70b6f5b84cf98cb7012ca3b5adc5f28f0f50bf Mon Sep 17 00:00:00 2001 From: Andriy Gelman Date: Mon, 12 Oct 2020 16:36:07 -0400 Subject: [PATCH] avformat/rtspdec: cosmetics Make error check style consistent with rest of function. Signed-off-by: Andriy Gelman --- libavformat/rtspdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index 8a2abc8ee9..28b35d1993 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -744,9 +744,9 @@ static int rtsp_read_header(AVFormatContext *s) if (rt->initial_pause) { /* do not start immediately */ } else { - if ((ret = rtsp_read_play(s)) < 0) { + ret = rtsp_read_play(s); + if (ret < 0) goto fail; - } } }