diff --git a/src/coreclr/tests/issues.targets b/src/coreclr/tests/issues.targets index 2e851c1f932b93..0d6725eea28b89 100644 --- a/src/coreclr/tests/issues.targets +++ b/src/coreclr/tests/issues.targets @@ -382,9 +382,6 @@ WindowsXamlManager and DesktopWindowXamlSource are supported for apps targeting Windows version 10.0.18226.0 and later. - - https://github.com/dotnet/runtime/issues/33276 - diff --git a/src/coreclr/tests/src/Interop/COM/Dynamic/Server/BasicTest.cpp b/src/coreclr/tests/src/Interop/COM/Dynamic/Server/BasicTest.cpp index f8d5ac0b9b151d..0c9078e7f17fe1 100644 --- a/src/coreclr/tests/src/Interop/COM/Dynamic/Server/BasicTest.cpp +++ b/src/coreclr/tests/src/Interop/COM/Dynamic/Server/BasicTest.cpp @@ -343,7 +343,7 @@ namespace HRESULT STDMETHODCALLTYPE BasicTest::get_String_Property( /* [retval][out] */ BSTR *ret) { - *ret = _string; + *ret = ::SysAllocString(_string); return S_OK; }