C28624
aviso C28624: nenhuma chamada para Release() para corresponder ao refcount incrementado de LResultFromObject
LresultFromObject aumenta o refcount em novos objetos IAccessible.
Exemplo
O exemplo de código a seguir gera esse aviso.
{
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 );
}
O exemplo a seguir evita o erro.
{
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();
}