Fix another memory leak.

This commit is contained in:
Mike McCormack 2005-09-25 15:14:16 +00:00 committed by Alexandre Julliard
parent b9a3a7a1f9
commit 0c9468d66b
1 changed files with 1 additions and 0 deletions

View File

@ -458,6 +458,7 @@ static struct media_info *create_media_info( void )
static void free_media_info( struct media_info *mi )
{
msi_free( mi->last_path );
msi_free( mi );
}