rc: fix uninitialized value on win32.

This commit is contained in:
Rémi Duraffort 2009-03-08 23:42:21 +01:00
parent 1d2ddfa1b1
commit f499933548
1 changed files with 1 additions and 1 deletions

View 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