From 3f7fd59d151a2773f0e2e93e56b6b13ec6e5334b Mon Sep 17 00:00:00 2001
From: Luca Barbato <lu_zero@gentoo.org>
Date: Sat, 15 Sep 2012 20:16:32 +0200
Subject: [PATCH] avformat: fix typo in avformat_close_input

The condition should not be &&.
---
 libavformat/utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index b5b49c93c4a..e4e4a8b4456 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2704,7 +2704,7 @@ void avformat_close_input(AVFormatContext **ps)
     AVFormatContext *s = *ps;
     AVIOContext *pb = s->pb;
 
-    if ((s->iformat && s->iformat->flags & AVFMT_NOFILE) &&
+    if ((s->iformat && s->iformat->flags & AVFMT_NOFILE) ||
         (s->flags & AVFMT_FLAG_CUSTOM_IO))
         pb = NULL;
 
-- 
GitLab