Commit fbfc221a authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msi: Fix an access after freeing memory.

parent 179b2941
......@@ -3389,9 +3389,9 @@ void msi_dialog_destroy( msi_dialog *dialog )
DestroyIcon( t->hIcon );
msi_free( t->tabnext );
msi_free( t->type );
msi_free( t );
if (t->hDll)
FreeLibrary( t->hDll );
msi_free( t );
}
/* destroy the list of fonts */
......
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