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
10a25c38
Commit
10a25c38
authored
May 06, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
May 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion: Fix compilation on systems that don't support nameless unions.
parent
928048b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
assembly.c
dlls/fusion/assembly.c
+5
-5
No files found.
dlls/fusion/assembly.c
View file @
10a25c38
...
...
@@ -230,8 +230,8 @@ static HRESULT parse_clr_tables(ASSEMBLY *assembly, ULONG offset)
assembly
->
numtables
=
0
;
for
(
i
=
0
;
i
<
MAX_CLR_TABLES
;
i
++
)
{
if
((
i
<
32
&&
(
assembly
->
tableshdr
->
MaskValid
.
LowPart
>>
i
)
&
1
)
||
(
i
>=
32
&&
(
assembly
->
tableshdr
->
MaskValid
.
HighPart
>>
i
)
&
1
))
if
((
i
<
32
&&
(
assembly
->
tableshdr
->
MaskValid
.
u
.
LowPart
>>
i
)
&
1
)
||
(
i
>=
32
&&
(
assembly
->
tableshdr
->
MaskValid
.
u
.
HighPart
>>
i
)
&
1
))
{
assembly
->
numtables
++
;
}
...
...
@@ -240,7 +240,7 @@ static HRESULT parse_clr_tables(ASSEMBLY *assembly, ULONG offset)
currofs
+=
assembly
->
numtables
*
sizeof
(
DWORD
);
memset
(
assembly
->
tables
,
-
1
,
MAX_CLR_TABLES
*
sizeof
(
CLRTABLE
));
if
(
assembly
->
tableshdr
->
MaskValid
.
LowPart
&
1
)
if
(
assembly
->
tableshdr
->
MaskValid
.
u
.
LowPart
&
1
)
{
assembly
->
tables
[
0
].
offset
=
currofs
;
assembly
->
tables
[
0
].
rows
=
assembly
->
numrows
[
0
];
...
...
@@ -250,8 +250,8 @@ static HRESULT parse_clr_tables(ASSEMBLY *assembly, ULONG offset)
offidx
=
1
;
for
(
i
=
1
;
i
<
MAX_CLR_TABLES
;
i
++
)
{
if
((
i
<
32
&&
(
assembly
->
tableshdr
->
MaskValid
.
LowPart
>>
i
)
&
1
)
||
(
i
>=
32
&&
(
assembly
->
tableshdr
->
MaskValid
.
HighPart
>>
i
)
&
1
))
if
((
i
<
32
&&
(
assembly
->
tableshdr
->
MaskValid
.
u
.
LowPart
>>
i
)
&
1
)
||
(
i
>=
32
&&
(
assembly
->
tableshdr
->
MaskValid
.
u
.
HighPart
>>
i
)
&
1
))
{
currofs
+=
COR_TABLE_SIZES
[
previ
]
*
assembly
->
numrows
[
offidx
-
1
];
assembly
->
tables
[
i
].
offset
=
currofs
;
...
...
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