summaryrefslogtreecommitdiffstats
path: root/libav/udp.c
diff options
context:
space:
mode:
authorFabrice Bellard <[email protected]>2002-05-18 23:11:09 +0000
committerFabrice Bellard <[email protected]>2002-05-18 23:11:09 +0000
commit1ea4f593658c8b161a0a725252058b49c16a6b29 (patch)
tree5bf96a2a7242b8a0c227a196a3368188a77f9d8e /libav/udp.c
parent065422677a17ddb3d84a3b85b5064eb7df7e2c8a (diff)
use av memory handling functions
Originally committed as revision 528 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/udp.c')
-rw-r--r--libav/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/udp.c b/libav/udp.c
index f761832177..4ad6a15871 100644
--- a/libav/udp.c
+++ b/libav/udp.c
@@ -92,7 +92,7 @@ static int udp_open(URLContext *h, const char *uri, int flags)
goto fail;
}
- s = malloc(sizeof(UDPContext));
+ s = av_malloc(sizeof(UDPContext));
if (!s)
return -ENOMEM;
h->priv_data = s;