silly bug fixed - thanx Szekeres Istvan <szekeres@webvilag.com>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1531 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2001-08-15 12:44:05 +00:00
parent 61927b3a9e
commit 015d00b596
1 changed files with 1 additions and 1 deletions

2
url.c
View File

@ -106,7 +106,7 @@ url_new(char* url) {
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);