msi: Set rec to NULL after calling msiobj_release on it in msi_create_table so that we don't call msiobj_release on it again.
This commit is contained in:
parent
02c416a187
commit
3323303e09
|
@ -681,6 +681,7 @@ UINT msi_create_table( MSIDATABASE *db, LPCWSTR name, column_info *col_info,
|
|||
tv = NULL;
|
||||
|
||||
msiobj_release( &rec->hdr );
|
||||
rec = NULL;
|
||||
|
||||
if( persistent )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue