The information in this article applies to:
SYMPTOMSWhen using _variant_t::operator IUnknown*(), the returned interface is not appropriately AddRef'd. This can cause unpredictable results when using the returned interface. For instance, subsequent calls through the interface may inexplicably fail or may cause an Access Violation. RESOLUTIONWrite a function to convert a _variant_t to an IUnknown*. A method based on _variant_t::operator IDispatch*() is shown in the sample below. STATUS
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article. This bug has been fixed in Visual Studio
97 Service Pack 3 and Visual C++ version 6.0. Q170365 INFO: Visual Studio 97 Service Packs - What, Where, and Why MORE INFORMATIONThe code below should be called instead of allowing _variant_t::operator IUnknown*() to be implicitly called to work around this problem. The conversion operator will be called whenever a conversion from _variant_t to IUnknown* is required. One place this occurs is with assignment statements, another is passing a _variant_t to a function that expects an IUnknown*. Sample
Additional query words: refcount Release
Keywords : kbVC500bug kbVC600fix kbVS97sp2fix |
Last Reviewed: August 18, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |