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
83ee191f
Commit
83ee191f
authored
Dec 22, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Dec 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Print the expected and found assembly versions if no compatible version is found.
parent
9ed42d27
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
actctx.c
dlls/ntdll/actctx.c
+5
-1
No files found.
dlls/ntdll/actctx.c
View file @
83ee191f
...
@@ -1398,7 +1398,11 @@ static BOOL parse_assembly_elem(xmlbuf_t* xmlbuf, struct actctx_loader* acl,
...
@@ -1398,7 +1398,11 @@ static BOOL parse_assembly_elem(xmlbuf_t* xmlbuf, struct actctx_loader* acl,
if
(
assembly
->
type
==
ASSEMBLY_MANIFEST
&&
if
(
assembly
->
type
==
ASSEMBLY_MANIFEST
&&
memcmp
(
&
assembly
->
id
.
version
,
&
expected_ai
->
version
,
sizeof
(
assembly
->
id
.
version
)))
memcmp
(
&
assembly
->
id
.
version
,
&
expected_ai
->
version
,
sizeof
(
assembly
->
id
.
version
)))
{
{
FIXME
(
"wrong version for assembly manifest
\n
"
);
FIXME
(
"wrong version for assembly manifest: %u.%u.%u.%u / %u.%u.%u.%u
\n
"
,
expected_ai
->
version
.
major
,
expected_ai
->
version
.
minor
,
expected_ai
->
version
.
build
,
expected_ai
->
version
.
revision
,
assembly
->
id
.
version
.
major
,
assembly
->
id
.
version
.
minor
,
assembly
->
id
.
version
.
build
,
assembly
->
id
.
version
.
revision
);
return
FALSE
;
return
FALSE
;
}
}
else
if
(
assembly
->
type
==
ASSEMBLY_SHARED_MANIFEST
&&
else
if
(
assembly
->
type
==
ASSEMBLY_SHARED_MANIFEST
&&
...
...
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