mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-21 15:53:19 +00:00
[Peek]Fixed crash caused by COM object double release in runner (#33427)
This commit is contained in:
parent
c252d87573
commit
5c631bd2c7
@ -187,7 +187,7 @@ private:
|
||||
}
|
||||
|
||||
// Enumerate all Shell Windows to compare the window handle against.
|
||||
IUnknownPtr spEnum{};
|
||||
IUnknownPtr spEnum{}; // _com_ptr_t; no Release required.
|
||||
result = spShellWindows->_NewEnum(&spEnum);
|
||||
if (result != S_OK || spEnum == nullptr)
|
||||
{
|
||||
@ -195,7 +195,7 @@ private:
|
||||
return true; // Might as well assume it's possible it's an explorer window.
|
||||
}
|
||||
|
||||
IEnumVARIANTPtr spEnumVariant{};
|
||||
IEnumVARIANTPtr spEnumVariant{}; // _com_ptr_t; no Release required.
|
||||
result = spEnum.QueryInterface(__uuidof(spEnumVariant), &spEnumVariant);
|
||||
if (result != S_OK || spEnumVariant == nullptr)
|
||||
{
|
||||
@ -219,8 +219,6 @@ private:
|
||||
{
|
||||
VariantClear(&variantElement);
|
||||
spWebBrowserApp->Release();
|
||||
spEnumVariant->Release();
|
||||
spEnum->Release();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -229,8 +227,6 @@ private:
|
||||
VariantClear(&variantElement);
|
||||
}
|
||||
|
||||
spEnumVariant->Release();
|
||||
spEnum->Release();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user