diff options
Diffstat (limited to 'src/input/input_http.c')
-rw-r--r-- | src/input/input_http.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c index 02a54e6d8..90dfba17c 100644 --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -1068,8 +1068,7 @@ static input_plugin_t *http_class_get_instance (input_class_t *cls_gen, xine_str static void http_class_dispose (input_class_t *this_gen) { http_input_class_t *this = (http_input_class_t *) this_gen; - if(this->proxyhost_env) - free(this->proxyhost_env); + free(this->proxyhost_env); free (this); } |