Commit 50c99add authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

appwiz.cpl: Correctly handle NULL params in CPL_STARTWPARAMSW handler.

parent c09f188c
......@@ -958,6 +958,9 @@ static LONG start_params(const WCHAR *params)
{
static const WCHAR install_geckoW[] = {'i','n','s','t','a','l','l','_','g','e','c','k','o',0};
if(!params)
return FALSE;
if(!strcmpW(params, install_geckoW)) {
install_wine_gecko();
return TRUE;
......
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