1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

tiff: in add_string_metadata() check the count more completely

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-01-27 04:53:03 +01:00
parent 5de286ef88
commit b16830840e

View File

@ -308,7 +308,7 @@ static int add_string_metadata(int count, const char *name,
{ {
char *value; char *value;
if (bytestream2_get_bytes_left(&s->gb) < count) if (bytestream2_get_bytes_left(&s->gb) < count || count < 0)
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
value = av_malloc(count + 1); value = av_malloc(count + 1);