forked from FFmpeg/FFmpeg
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
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue