Skip to content
Snippets Groups Projects
Commit ed580a1d authored by Michael McCormack's avatar Michael McCormack Committed by Alexandre Julliard
Browse files

msi: Avoid accessing a null pointer.

parent ed9745b9
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment