From 28094cb6a15a0068c21a9ff22477c624115dd4d1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Mon, 25 Feb 2008 19:58:36 +0000 Subject: [PATCH] Actually fix the ActiveX plugin --- projects/activex/plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/activex/plugin.cpp b/projects/activex/plugin.cpp index 85f612fdfd..22a1ed4f76 100644 --- a/projects/activex/plugin.cpp +++ b/projects/activex/plugin.cpp @@ -433,8 +433,8 @@ HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc) /* ** default initialization options */ - const char *ppsz_argv[32] = { "vlc" }; - int ppsz_argc = 1; + const char *ppsz_argv[32] = { }; + int ppsz_argc = 0; char p_progpath[MAX_PATH]; { -- 2.11.4.GIT