Commit c1d1274b authored by Paul B Mahol's avatar Paul B Mahol

avcodec/interplayvideo: return void

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent ed782beb
...@@ -1070,7 +1070,7 @@ static void ipvideo_decode_format_10_opcodes(IpvideoContext *s, AVFrame *frame) ...@@ -1070,7 +1070,7 @@ static void ipvideo_decode_format_10_opcodes(IpvideoContext *s, AVFrame *frame)
break; break;
} }
if (bytestream2_get_bytes_left(&skip_map_ptr) < 2) if (bytestream2_get_bytes_left(&skip_map_ptr) < 2)
return AVERROR_INVALIDDATA; return;
skip = bytestream2_get_le16(&skip_map_ptr); skip = bytestream2_get_le16(&skip_map_ptr);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment