postproc/postprocess: Check for av_malloc() failure

Fixes CID1271052

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-02-22 03:19:05 +01:00
parent ac424b23e4
commit f9d24ee1dc
1 changed files with 2 additions and 0 deletions

View File

@ -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;