We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f7150c commit c695204Copy full SHA for c695204
strings/base_activation.h
@@ -47,7 +47,7 @@ namespace winrt::impl
47
// We should not attempt to fallback to regfree for error codes besides class not registered. If the activation is out
48
// of process then we could have RPC error codes. It would be bad if a class that should only ever be used out of proc
49
// is erroneously activated inproc.
50
- if ((hr == error_class_not_registered) && reg_free_factory_getter)
+ if (((hr == error_class_not_registered) || (hr == error_class_not_available)) && reg_free_factory_getter)
51
{
52
return reg_free_factory_getter(name, guid, result);
53
}
0 commit comments