[Mplayer-cvslog] CVS: main url.c,1.5,1.6
Arpi of Ize
arpi at mplayer.dev.hu
Wed Aug 15 14:44:07 CEST 2001
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv30280
Modified Files:
url.c
Log Message:
silly bug fixed - thanx Szekeres Istvan <szekeres at webvilag.com>
Index: url.c
===================================================================
RCS file: /cvsroot/mplayer/main/url.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- url.c 4 Jun 2001 17:47:43 -0000 1.5
+++ url.c 15 Aug 2001 12:44:05 -0000 1.6
@@ -106,7 +106,7 @@
void
url_free(URL_t* url) {
- if(url) return;
+ if(!url) return;
if(url->url) free(url->url);
if(url->protocol) free(url->protocol);
if(url->hostname) free(url->hostname);
More information about the MPlayer-cvslog
mailing list