Commit 7b449063 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

msi: Avoid using pointer value after free.

parent bcf38fc5
......@@ -256,8 +256,8 @@ int msiobj_release( MSIOBJECTHDR *info )
{
if( info->destructor )
info->destructor( info );
msi_free( info );
TRACE("object %p destroyed\n", info);
msi_free( info );
}
return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment