summaryrefslogtreecommitdiffstats
path: root/url.h
diff options
context:
space:
mode:
authorbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-20 12:42:14 +0000
committerbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-20 12:42:14 +0000
commitfffaf83e4b3397dcef2f984b365541b9ed7752d7 (patch)
tree24513ebebea0429f0d004dc3195f22d6c5ab8418 /url.h
parent7b48f8d38ef25cd1a0205127188e65cba2d4e1c3 (diff)
downloadmpv-fffaf83e4b3397dcef2f984b365541b9ed7752d7.tar.bz2
mpv-fffaf83e4b3397dcef2f984b365541b9ed7752d7.tar.xz
Added initialisation of URL pointers.
Added null terminaison to string. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@841 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'url.h')
-rw-r--r--url.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/url.h b/url.h
index ef01c5e034..2d7ae89eb8 100644
--- a/url.h
+++ b/url.h
@@ -5,7 +5,7 @@ typedef struct {
char *url;
char *protocol;
char *hostname;
- char *path;
+ char *file;
unsigned int port;
} URL_t;