summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPetri Hintukainen <phintuka@users.sourceforge.net>2011-11-24 09:54:18 +0200
committerPetri Hintukainen <phintuka@users.sourceforge.net>2011-11-24 09:54:18 +0200
commitc6324255117128d3a7a9f614c756022d3ef7461d (patch)
tree9f5e1fa8fdf404bfc8014d328d9a17f1f5ac0734 /src
parent0e82359fa78d817e4fb20b6cb4b07d16cc182e17 (diff)
downloadxine-lib-c6324255117128d3a7a9f614c756022d3ef7461d.tar.gz
xine-lib-c6324255117128d3a7a9f614c756022d3ef7461d.tar.bz2
Silenced compiler warning
Diffstat (limited to 'src')
-rw-r--r--src/input/input_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index e67c07566..34437c976 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -169,7 +169,7 @@ static void no_proxy_list_change_cb(void *this_gen, xine_cfg_entry_t *cfg) {
*/
static int _x_use_proxy(http_input_class_t *this, const char *host) {
const char *target;
- char *no_proxy, *domain, *ptr;
+ char *no_proxy, *domain, *ptr = NULL;
struct hostent *info;
size_t i = 0, host_len, noprox_len;