wbemprox: Fixed a memory leak in get_sd (Coverity).
This commit is contained in:
parent
2c6cc0be46
commit
e0905d780e
|
@ -120,8 +120,11 @@ static HRESULT get_sd( SECURITY_DESCRIPTOR **sd, DWORD *size )
|
|||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
if (!MakeSelfRelativeSD(&absolute_sd, *sd, size))
|
||||
if (!MakeSelfRelativeSD(&absolute_sd, *sd, size)) {
|
||||
HeapFree( GetProcessHeap(), 0, *sd );
|
||||
*sd = NULL;
|
||||
hr = E_FAIL;
|
||||
}
|
||||
}
|
||||
|
||||
return hr;
|
||||
|
|
Loading…
Reference in New Issue