mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
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:
parent
61927b3a9e
commit
015d00b596
2
url.c
2
url.c
@ -106,7 +106,7 @@ url_new(char* url) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
url_free(URL_t* url) {
|
url_free(URL_t* url) {
|
||||||
if(url) return;
|
if(!url) return;
|
||||||
if(url->url) free(url->url);
|
if(url->url) free(url->url);
|
||||||
if(url->protocol) free(url->protocol);
|
if(url->protocol) free(url->protocol);
|
||||||
if(url->hostname) free(url->hostname);
|
if(url->hostname) free(url->hostname);
|
||||||
|
Loading…
Reference in New Issue
Block a user