From 0d4c587854097c1cf530d1d9fd0ff8bb231be427 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Thu, 23 Jan 2003 23:18:42 +0000 Subject: [PATCH] removed warning Originally committed as revision 1506 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/utils.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index e9e6725221..554c9cd157 100644 --- a/libavcodec/utils.c +++ b/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;