removed warning

Originally committed as revision 1506 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Fabrice Bellard 22 years ago
parent 8e1e6f31c1
commit 0d4c587854
  1. 2
      libavcodec/utils.c

@ -24,8 +24,6 @@ void *av_mallocz(unsigned int size)
{
void *ptr;
if(size == 0) fprintf(stderr, "Warning, allocating 0 bytes\n");
ptr = av_malloc(size);
if (!ptr)
return NULL;

Loading…
Cancel
Save