Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
37c17979
Commit
37c17979
authored
Dec 26, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Accept asm.v2 as default namespace.
parent
cb4e8819
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
actctx.c
dlls/ntdll/actctx.c
+4
-1
No files found.
dlls/ntdll/actctx.c
View file @
37c17979
...
...
@@ -656,6 +656,7 @@ static const struct olemisc_entry olemisc_values[] =
static
const
WCHAR
xmlW
[]
=
{
'?'
,
'x'
,
'm'
,
'l'
,
0
};
static
const
WCHAR
manifestv1W
[]
=
{
'u'
,
'r'
,
'n'
,
':'
,
's'
,
'c'
,
'h'
,
'e'
,
'm'
,
'a'
,
's'
,
'-'
,
'm'
,
'i'
,
'c'
,
'r'
,
'o'
,
's'
,
'o'
,
'f'
,
't'
,
'-'
,
'c'
,
'o'
,
'm'
,
':'
,
'a'
,
's'
,
'm'
,
'.'
,
'v'
,
'1'
,
0
};
static
const
WCHAR
manifestv2W
[]
=
{
'u'
,
'r'
,
'n'
,
':'
,
's'
,
'c'
,
'h'
,
'e'
,
'm'
,
'a'
,
's'
,
'-'
,
'm'
,
'i'
,
'c'
,
'r'
,
'o'
,
's'
,
'o'
,
'f'
,
't'
,
'-'
,
'c'
,
'o'
,
'm'
,
':'
,
'a'
,
's'
,
'm'
,
'.'
,
'v'
,
'2'
,
0
};
static
const
WCHAR
manifestv3W
[]
=
{
'u'
,
'r'
,
'n'
,
':'
,
's'
,
'c'
,
'h'
,
'e'
,
'm'
,
'a'
,
's'
,
'-'
,
'm'
,
'i'
,
'c'
,
'r'
,
'o'
,
's'
,
'o'
,
'f'
,
't'
,
'-'
,
'c'
,
'o'
,
'm'
,
':'
,
'a'
,
's'
,
'm'
,
'.'
,
'v'
,
'3'
,
0
};
static
const
WCHAR
dotManifestW
[]
=
{
'.'
,
'm'
,
'a'
,
'n'
,
'i'
,
'f'
,
'e'
,
's'
,
't'
,
0
};
...
...
@@ -2213,7 +2214,9 @@ static BOOL parse_assembly_elem(xmlbuf_t* xmlbuf, struct actctx_loader* acl,
}
else
if
(
xmlstr_cmp
(
&
attr_name
,
xmlnsW
))
{
if
(
!
xmlstr_cmp
(
&
attr_value
,
manifestv1W
)
&&
!
xmlstr_cmp
(
&
attr_value
,
manifestv3W
))
if
(
!
xmlstr_cmp
(
&
attr_value
,
manifestv1W
)
&&
!
xmlstr_cmp
(
&
attr_value
,
manifestv2W
)
&&
!
xmlstr_cmp
(
&
attr_value
,
manifestv3W
))
{
FIXME
(
"wrong namespace %s
\n
"
,
debugstr_xmlstr
(
&
attr_value
));
return
FALSE
;
...
...
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