Commit 125181ef authored by bellard's avatar bellard

removed warning


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1506 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 06fe37cb
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment