summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/brstm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/brstm.c b/libavformat/brstm.c
index 4ac9881c99..bbdbcef6cb 100644
--- a/libavformat/brstm.c
+++ b/libavformat/brstm.c
@@ -205,7 +205,7 @@ static int read_header(AVFormatContext *s)
avio_skip(s->pb, 1); // padding
st->codec->sample_rate = bfstm ? read32(s) : read16(s);
- if (!st->codec->sample_rate)
+ if (st->codec->sample_rate <= 0)
return AVERROR_INVALIDDATA;
if (!bfstm)