Browse Source

Make av_realloc(0) behave like our av_malloc(0)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.8
Michael Niedermayer 14 years ago
parent
commit
91ff05f6ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/mem.c

+ 1
- 1
libavutil/mem.c View File

@@ -132,7 +132,7 @@ void *av_realloc(void *ptr, size_t size)
diff= ((char*)ptr)[-1];
return (char*)realloc((char*)ptr - diff, size + diff) + diff;
#else
return realloc(ptr, size);
return realloc(ptr, size + !size);
#endif
}



Loading…
Cancel
Save