mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
removed warning
Originally committed as revision 1506 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8e1e6f31c1
commit
0d4c587854
@ -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…
Reference in New Issue
Block a user