Browse Source

avutil/fixed_dsp: Check for av_malloc() failure

Fixes CID1271051

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
c3b6454d80
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavutil/fixed_dsp.c

+ 4
- 0
libavutil/fixed_dsp.c View File

@@ -91,6 +91,10 @@ static void vector_fmul_window_fixed_c(int32_t *dst, const int32_t *src0,
AVFixedDSPContext * avpriv_alloc_fixed_dsp(int bit_exact)
{
AVFixedDSPContext * fdsp = av_malloc(sizeof(AVFixedDSPContext));

if (!fdsp)
return NULL;

fdsp->vector_fmul_window_scaled = vector_fmul_window_fixed_scaled_c;
fdsp->vector_fmul_window = vector_fmul_window_fixed_c;



Loading…
Cancel
Save