Commit e18952a9 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Add the allocated mime type to the mime type list.

parent 280bcf6e
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment