summaryrefslogtreecommitdiff
path: root/libavformat/nutdec.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-07-07 20:48:34 +0200
committerLuca Barbato <lu_zero@gentoo.org>2014-07-08 19:04:09 +0200
commit52a1c32c0a86e84d43f977c5148e62975a0c6917 (patch)
tree6e961d8e6c471f036d79d7a38732d2b924996daa /libavformat/nutdec.c
parent79fce1ec8abd017593c003917fc123f7119a78d6 (diff)
nut: Use nut->version in the version range check
It was wrongly left unchanged when the version field had been introduced. (c94e2e85cb6af8a570d8542a830556243bd32873)
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r--libavformat/nutdec.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index 838c181589..8ec67ae355 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -214,9 +214,10 @@ static int decode_main_header(NUTContext *nut)
end += avio_tell(bc);
nut->version = ffio_read_varlen(bc);
- if (tmp < NUT_MIN_VERSION && tmp > NUT_MAX_VERSION) {
- av_log(s, AV_LOG_ERROR, "Version %"PRId64" not supported.\n",
- tmp);
+ if (nut->version < NUT_MIN_VERSION &&
+ nut->version > NUT_MAX_VERSION) {
+ av_log(s, AV_LOG_ERROR, "Version %d not supported.\n",
+ nut->version);
return AVERROR(ENOSYS);
}