Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
59edd7d8
Commit
59edd7d8
authored
Oct 05, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Oct 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Only ignore the StringPool and StringData in a transform.
parent
2af5ed57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
table.c
dlls/msi/table.c
+10
-4
No files found.
dlls/msi/table.c
View file @
59edd7d8
...
...
@@ -1966,11 +1966,17 @@ UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg )
r
=
IEnumSTATSTG_Next
(
stgenum
,
1
,
&
stat
,
&
count
);
if
(
FAILED
(
r
)
||
!
count
)
break
;
decode_streamname
(
stat
.
pwcsName
,
name
);
if
(
(
name
[
0
]
==
0x4840
)
&&
(
name
[
1
]
!=
'_'
)
)
ret
=
msi_table_load_transform
(
db
,
stg
,
strings
,
name
+
1
);
else
TRACE
(
"transform contains stream %s
\n
"
,
debugstr_w
(
name
));
TRACE
(
"transform contains stream %s
\n
"
,
debugstr_w
(
name
));
if
(
name
[
0
]
!=
0x4840
)
continue
;
if
(
!
lstrcmpW
(
name
+
1
,
szStringPool
)
||
!
lstrcmpW
(
name
+
1
,
szStringData
)
)
continue
;
ret
=
msi_table_load_transform
(
db
,
stg
,
strings
,
name
+
1
);
}
if
(
ret
==
ERROR_SUCCESS
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment