From f4999335487bd2fc92ad05229356e1d450a8cc99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Duraffort?= Date: Sun, 8 Mar 2009 23:42:21 +0100 Subject: [PATCH] rc: fix uninitialized value on win32. --- modules/control/rc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/control/rc.c b/modules/control/rc.c index 3f69001bb6..95fd197c4f 100644 --- a/modules/control/rc.c +++ b/modules/control/rc.c @@ -214,7 +214,7 @@ vlc_module_end () static int Activate( vlc_object_t *p_this ) { intf_thread_t *p_intf = (intf_thread_t*)p_this; - char *psz_host, *psz_unix_path; + char *psz_host, *psz_unix_path = NULL; int *pi_socket = NULL; #ifndef WIN32