Commit 2494e4a5 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Add a missing msiobj_release that was resulting in a leaked object

with each MsiCreateRecord call.
parent 41fbee0e
......@@ -98,6 +98,7 @@ MSIHANDLE WINAPI MsiCreateRecord( unsigned int cParams )
rec = MSI_CreateRecord( cParams );
if( rec )
ret = alloc_msihandle( &rec->hdr );
msiobj_release( &rec->hdr );
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