msi: Fix a memory leak.

This commit is contained in:
Mike McCormack 2006-08-29 17:07:45 +09:00 committed by Alexandre Julliard
parent 155a325f96
commit 6eea50394e
1 changed files with 2 additions and 0 deletions

View File

@ -326,6 +326,8 @@ static UINT JOIN_delete( struct tagMSIVIEW *view )
msi_free( jv->pairs );
jv->pairs = NULL;
msi_free( jv );
return ERROR_SUCCESS;
}