diff --git a/tools/coverity.c b/tools/coverity.c
index 3cc248c5464a7e5c51e6d7243d2cc9ada42aba6b..19a132a9767a2cbc2c405b4c70caddc2646ce121 100644
--- a/tools/coverity.c
+++ b/tools/coverity.c
@@ -58,7 +58,22 @@ void *av_mallocz(size_t size) {
     }
 }
 
+void *av_realloc(void *ptr, size_t size) {
+    int has_memory;
+    __coverity_negative_sink__(size);
+    if (has_memory) {
+        __coverity_escape__(ptr);
+        ptr = __coverity_alloc__(size);
+        __coverity_writeall__(ptr);
+        __coverity_mark_as_afm_allocated__(ptr, "av_free");
+        return ptr;
+    } else {
+        return 0;
+    }
+}
+
 void *av_free(void *ptr) {
     __coverity_free__(ptr);
     __coverity_mark_as_afm_freed__(ptr, "av_free");
 }
+