You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
In the CreateInstance() method, we do AddRef (indirectly) on the native object twice:
1st when doing CoCreateInstance
2nd when doing FromAbi on the native pointer
This can result in the native object never being cleaned. We should do one release immediately. The other release would automatically be done when the object goes out of scope.