C28624
警告 C28624: LResultFromObject からインクリメントされた参照カウントに一致する Release() の呼び出しがありません
LresultFromObject は、新しい IAccessible オブジェクトの参照カウントを増やします。
例
次のコード例では、この警告が生成されます。
{
IAccessible *pacc = CreateNewIAccessible();
LRESULT lTemp = LresultFromObject(riid, NULL, pacc );
}
{
IAccessible *pacc = NULL;
// Get new interface (from same object)
QueryInterface( & pacc );
// Lresult will internally bump up the refcount
// to hold onto the object.
LRESULT lTemp = LresultFromObject( riid, NULL, pacc );
}
次の例では、エラーが回避されます。
{
IAccessible *pacc = CreateNewIAccessible();
// Lresult internally increases the refcount to
// hold onto the object.
LRESULT lTemp = LresultFromObject(riid, NULL, pacc );
// We no longer need our pacc interface, so we release it.
pacc->Release();
}