mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/curves: fix resource leaks.
Fixes CID1206650
This commit is contained in:
parent
b432960528
commit
b2cfd1fde7
@ -331,8 +331,10 @@ static int parse_psfile(AVFilterContext *ctx, const char *fname)
|
||||
return ret;
|
||||
|
||||
#define READ16(dst) do { \
|
||||
if (size < 2) \
|
||||
return AVERROR_INVALIDDATA; \
|
||||
if (size < 2) { \
|
||||
ret = AVERROR_INVALIDDATA; \
|
||||
goto end; \
|
||||
} \
|
||||
dst = AV_RB16(buf); \
|
||||
buf += 2; \
|
||||
size -= 2; \
|
||||
|
Loading…
Reference in New Issue
Block a user