Commit f4999335 authored by Rémi Duraffort's avatar Rémi Duraffort

rc: fix uninitialized value on win32.

parent 1d2ddfa1
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment