OSDN Git Service

idcin: check for integer overflow when calling av_get_packet()
authorJustin Ruggles <justin.ruggles@gmail.com>
Wed, 1 Aug 2012 20:10:08 +0000 (16:10 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Wed, 9 Jan 2013 19:49:06 +0000 (14:49 -0500)
commit33f58c3616d2870d3861da68217ef9d05cc5047a
treec8ce3602372a36786691f0270ad1b36444fa6e45
parent7040e479a1530b2eda4b89a182d5eb50a77bd907
idcin: check for integer overflow when calling av_get_packet()

chunk_size is unsigned 32-bit, but av_get_packet() takes a signed int as the
packet size.
libavformat/idcin.c