mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
postproc/postprocess: Check for av_malloc() failure
Fixes CID1271052 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ac424b23e4
commit
f9d24ee1dc
@ -700,6 +700,8 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality)
|
||||
}
|
||||
|
||||
ppMode= av_malloc(sizeof(PPMode));
|
||||
if (!ppMode)
|
||||
return NULL;
|
||||
|
||||
ppMode->lumMode= 0;
|
||||
ppMode->chromMode= 0;
|
||||
|
Loading…
Reference in New Issue
Block a user