[MPlayer-cvslog] r35463 - trunk/stream/url.c
reimar
subversion at mplayerhq.hu
Fri Nov 23 20:26:01 CET 2012
Author: reimar
Date: Fri Nov 23 20:26:01 2012
New Revision: 35463
Log:
Also free the noauth_url entry in the URL struct.
Modified:
trunk/stream/url.c
Modified: trunk/stream/url.c
==============================================================================
--- trunk/stream/url.c Fri Nov 23 20:21:36 2012 (r35462)
+++ trunk/stream/url.c Fri Nov 23 20:26:01 2012 (r35463)
@@ -310,6 +310,7 @@ void
url_free(URL_t* url) {
if(!url) return;
free(url->url);
+ free(url->noauth_url);
free(url->protocol);
free(url->hostname);
free(url->file);
More information about the MPlayer-cvslog
mailing list