diff --git a/libavformat/vivo.c b/libavformat/vivo.c index a9effd5835..c9e9c37f37 100644 --- a/libavformat/vivo.c +++ b/libavformat/vivo.c @@ -63,7 +63,7 @@ static int vivo_probe(AVProbeData *p) return 0; buf += 15; - if (*buf < '0' && *buf > '2') + if (*buf < '0' || *buf > '2') return 0; return AVPROBE_SCORE_MAX;