mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
shlwapi: Uninitialized variable fix (Coverity).
This commit is contained in:
parent
1308d09808
commit
fb0fbe3e8d
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ HRESULT WINAPI AssocQueryStringByKeyA(ASSOCF cfFlags, ASSOCSTR str, HKEY hkAssoc
|
|||
LPCSTR pszExtra, LPSTR pszOut,
|
||||
DWORD *pcchOut)
|
||||
{
|
||||
WCHAR szExtraW[MAX_PATH], *lpszExtraW;
|
||||
WCHAR szExtraW[MAX_PATH], *lpszExtraW = szExtraW;
|
||||
WCHAR szReturnW[MAX_PATH], *lpszReturnW = szReturnW;
|
||||
HRESULT hRet = E_OUTOFMEMORY;
|
||||
|
||||
|
|
Loading…
Reference in a new issue