From 31277aebd906a796e630b9c2533ca73cdc5d58a8 Mon Sep 17 00:00:00 2001
From: Daniel Kristjansson <danielk@mrl.nyu.edu>
Date: Thu, 28 Jan 2010 09:11:26 +0000
Subject: [PATCH] Use av_mallocz in url_open_protocol for URLContext. Patch by
 Daniel Kristjansson: danielk cuymedia net

Originally committed as revision 21501 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/avio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/avio.c b/libavformat/avio.c
index ca022c8eb16..ec427deea39 100644
--- a/libavformat/avio.c
+++ b/libavformat/avio.c
@@ -76,7 +76,7 @@ int url_open_protocol (URLContext **puc, struct URLProtocol *up,
     URLContext *uc;
     int err;
 
-    uc = av_malloc(sizeof(URLContext) + strlen(filename) + 1);
+    uc = av_mallocz(sizeof(URLContext) + strlen(filename) + 1);
     if (!uc) {
         err = AVERROR(ENOMEM);
         goto fail;
-- 
GitLab