From a3378e812c8e417a34e7cb8521a82b314a45de5c Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 23 Jan 2008 17:36:56 +0000 Subject: [PATCH] Fix [22070] not creating the http-host variable. Closes #1449. --- modules/control/http/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/control/http/http.c b/modules/control/http/http.c index 1738d9cd34..fb39ea7884 100644 --- a/modules/control/http/http.c +++ b/modules/control/http/http.c @@ -132,7 +132,7 @@ static int Open( vlc_object_t *p_this ) int i_port = 0; char *psz_src = NULL; - psz_address = var_GetNonEmptyString(p_intf->p_libvlc, "http-host"); + psz_address = var_CreateGetNonEmptyString( p_intf, "http-host" ); if( psz_address != NULL ) { char *psz_parser = strchr( psz_address, ':' ); -- 2.39.2