Add the allocated mime type to the mime type list.

This commit is contained in:
Mike McCormack 2005-08-27 10:01:03 +00:00 committed by Alexandre Julliard
parent 280bcf6e4a
commit e18952a921
1 changed files with 3 additions and 1 deletions

View File

@ -386,7 +386,9 @@ static MSIMIME *load_mime( MSIPACKAGE* package, MSIRECORD *row )
sz = IDENTIFIER_SIZE;
MSI_RecordGetStringW( row, 3, mt->CLSID, &sz );
mt->Class = load_given_class(package, mt->CLSID);
mt->Class = load_given_class( package, mt->CLSID );
list_add_tail( &package->mimes, &mt->entry );
return mt;
}