diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index d46c51d9cc0b95a922c0f647c373960994f15470..bc7da83efea3941e3e721cd918b3d18a562669f8 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -23,6 +23,9 @@
 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;