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
a9722145
Commit
a9722145
authored
Sep 21, 2020
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix the spelling of the arch_context_parameters variable.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
38c91043
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
exception.c
dlls/ntdll/exception.c
+4
-4
No files found.
dlls/ntdll/exception.c
View file @
a9722145
...
...
@@ -696,7 +696,7 @@ static const struct context_parameters
ULONG
flags_offset
;
const
struct
context_copy_range
*
copy_ranges
;
}
arch_context_param
a
ters
[]
=
arch_context_param
e
ters
[]
=
{
{
0x00100000
,
0xd810005f
,
0x4d0
,
0x4d0
,
0x20
,
7
,
0xf
,
0x30
,
copy_ranges_amd64
},
{
0x00010000
,
0xd801007f
,
0x2cc
,
0xcc
,
0x18
,
3
,
0x3
,
0
,
copy_ranges_x86
},
...
...
@@ -706,10 +706,10 @@ static const struct context_parameters *context_get_parameters( ULONG context_fl
{
unsigned
int
i
;
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
arch_context_param
a
ters
);
++
i
)
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
arch_context_param
e
ters
);
++
i
)
{
if
(
context_flags
&
arch_context_param
a
ters
[
i
].
arch_flag
)
return
context_flags
&
~
arch_context_param
aters
[
i
].
supported_flags
?
NULL
:
&
arch_context_parama
ters
[
i
];
if
(
context_flags
&
arch_context_param
e
ters
[
i
].
arch_flag
)
return
context_flags
&
~
arch_context_param
eters
[
i
].
supported_flags
?
NULL
:
&
arch_context_parame
ters
[
i
];
}
return
NULL
;
}
...
...
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