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

msi: Avoid accessing a null pointer.

parent ed9745b9
......@@ -100,8 +100,10 @@ MSIHANDLE WINAPI MsiCreateRecord( unsigned int cParams )
rec = MSI_CreateRecord( cParams );
if( rec )
{
ret = alloc_msihandle( &rec->hdr );
msiobj_release( &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