mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
gameux: Avoid double free (coverity).
This commit is contained in:
parent
07fd75badd
commit
97dbccf5f2
1 changed files with 3 additions and 1 deletions
|
@ -783,6 +783,7 @@ HRESULT GAMEUX_FindGameInstanceId(
|
|||
sConfigGDFBinaryPath, &lpValue);
|
||||
|
||||
if(SUCCEEDED(hr))
|
||||
{
|
||||
if(lstrcmpW(lpValue, sGDFBinaryPath)==0)
|
||||
{
|
||||
/* key found, let's copy instance id and exit */
|
||||
|
@ -792,6 +793,7 @@ HRESULT GAMEUX_FindGameInstanceId(
|
|||
HeapFree(GetProcessHeap(), 0, lpValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
HeapFree(GetProcessHeap(), 0, lpName);
|
||||
RegCloseKey(hRootKey);
|
||||
|
|
Loading…
Reference in a new issue