mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msi: Reverse the transform storage list order.
This ensures that we use the most recently added stream if another transform storage contains a stream by the same name. Fixes wordconv.msp, an update for Word 2007.
This commit is contained in:
parent
424e3a9fb8
commit
fba248642b
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ void append_storage_to_db( MSIDATABASE *db, IStorage *stg )
|
|||
t = msi_alloc( sizeof *t );
|
||||
t->stg = stg;
|
||||
IStorage_AddRef( stg );
|
||||
list_add_tail( &db->transforms, &t->entry );
|
||||
list_add_head( &db->transforms, &t->entry );
|
||||
|
||||
/* the transform may add or replace streams */
|
||||
free_streams( db );
|
||||
|
|
Loading…
Reference in a new issue