Commit e48fe14a authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Michael Niedermayer

targa: prevent integer overflow in bufsize check.

(cherry picked from commit 78e2380a)
parent d4e321d9
......@@ -34,7 +34,7 @@ typedef struct TargaContext {
} TargaContext;
#define CHECK_BUFFER_SIZE(buf, buf_end, needed, where) \
if(buf + needed > buf_end){ \
if(needed > buf_end - buf){ \
av_log(avctx, AV_LOG_ERROR, "Problem: unexpected end of data while reading " where "\n"); \
return -1; \
} \
......
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