Signed-off-by: Stephan Holljes <klaxa1...@googlemail.com> --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
The assignment had incorrectly placed parentheses which resulted in ret always being > 0. diff --git a/libavformat/http.c b/libavformat/http.c index d3c0b7e..c148a29 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -399,7 +399,7 @@ static int http_handshake(URLContext *c) switch (ch->handshake_step) { case LOWER_PROTO: av_log(c, AV_LOG_TRACE, "Lower protocol\n"); - if ((ret = ffurl_handshake(cl) > 0)) + if ((ret = ffurl_handshake(cl)) > 0) return 2 + ret; if ((ret < 0)) return ret; -- 2.4.3 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel