diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-07-01 14:28:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-07-01 14:28:41 +0200 |
commit | 60ec3007e69ce8c5ae540c81b0bd21c1ebe1543a (patch) | |
tree | 74bd64ca8126dc77aacb8a40a1a8107d08f73ad7 /libavformat/nutdec.c | |
parent | 4eee685a212a1e189860dfc27d14e41130c730c1 (diff) | |
download | ffmpeg-60ec3007e69ce8c5ae540c81b0bd21c1ebe1543a.tar.gz |
avformat/nutdec: Check ff_gen_search() for failure
Fixes assertion failure
Found-by: durandal_1707
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r-- | libavformat/nutdec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 606deaa838..63b0cd2fb9 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -1280,6 +1280,8 @@ static int read_seek(AVFormatContext *s, int stream_index, next_node[1]->pos, next_node[1]->pos, next_node[0]->ts, next_node[1]->ts, AVSEEK_FLAG_BACKWARD, &ts, nut_read_timestamp); + if (pos < 0) + return pos; if (!(flags & AVSEEK_FLAG_BACKWARD)) { dummy.pos = pos + 16; |