removed warning

Originally committed as revision 1506 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard 2003-01-23 23:18:42 +00:00
parent 8e1e6f31c1
commit 0d4c587854

View File

@ -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;