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 ) ...@@ -256,8 +256,8 @@ int msiobj_release( MSIOBJECTHDR *info )
{ {
if( info->destructor ) if( info->destructor )
info->destructor( info ); info->destructor( info );
msi_free( info );
TRACE("object %p destroyed\n", info); TRACE("object %p destroyed\n", info);
msi_free( info );
} }
return ret; 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