shlwapi: Fix ASSOC_GetExecutable not to use uninitialised variable.

oldstable
Joris Huizer 2008-10-15 00:13:44 +02:00 committed by Alexandre Julliard
parent f0321f85a0
commit 8ed05aeb32
1 changed files with 1 additions and 1 deletions

View File

@ -603,7 +603,7 @@ static HRESULT ASSOC_GetExecutable(IQueryAssociationsImpl *This,
LONG ret;
WCHAR * pszCommand;
WCHAR * pszEnd;
WCHAR * pszExtraFromReg;
WCHAR * pszExtraFromReg = NULL;
WCHAR * pszFileType;
WCHAR * pszStart;
static const WCHAR commandW[] = { 'c','o','m','m','a','n','d',0 };