Fix all malloc(0) issues

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/2/head
Michael Niedermayer 14 years ago
parent 0fea3b7b80
commit 5a36783bc4
  1. 2
      libavutil/mem.c

@ -71,6 +71,8 @@ void *av_malloc(size_t size)
/* let's disallow possible ambiguous cases */
if(size > (INT_MAX-32) )
return NULL;
else if(!size)
size= 1;
#if CONFIG_MEMALIGN_HACK
ptr = malloc(size+32);

Loading…
Cancel
Save