]> git.sesse.net Git - vlc/commitdiff
rc: fix uninitialized value on win32.
authorRémi Duraffort <ivoire@videolan.org>
Sun, 8 Mar 2009 22:42:21 +0000 (23:42 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Sun, 8 Mar 2009 22:42:21 +0000 (23:42 +0100)
modules/control/rc.c

index 3f69001bb675dd2ede5547380373be3bc4a4116d..95fd197c4fc90441feb7e5303bfca660ea3a9eea 100644 (file)
@@ -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