Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
5c922669
Commit
5c922669
authored
21 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Fixed RtlUnwind signature (reported by Pierre d'Herbemont).
parent
963dd34e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/ntdll/exception.c
+5
-11
5 additions, 11 deletions
dlls/ntdll/exception.c
with
5 additions
and
11 deletions
dlls/ntdll/exception.c
+
5
−
11
View file @
5c922669
...
...
@@ -74,11 +74,6 @@ static CRITICAL_SECTION vectored_handlers_section = { &critsect_debug, -1, 0, 0,
# error You must define GET_IP for this CPU
#endif
void
WINAPI
EXC_RtlRaiseException
(
PEXCEPTION_RECORD
,
PCONTEXT
);
void
WINAPI
EXC_RtlUnwind
(
PEXCEPTION_REGISTRATION_RECORD
,
LPVOID
,
PEXCEPTION_RECORD
,
DWORD
,
PCONTEXT
);
void
WINAPI
EXC_NtRaiseException
(
PEXCEPTION_RECORD
,
PCONTEXT
,
BOOL
,
PCONTEXT
);
/*******************************************************************
* EXC_RaiseHandler
...
...
@@ -309,15 +304,14 @@ void WINAPI RtlRaiseException( EXCEPTION_RECORD *rec )
/*******************************************************************
* RtlUnwind (NTDLL.@)
*/
void
WINAPI
EXC_RtlUnwind
(
PEXCEPTION_REGISTRATION_RECORD
pEndFrame
,
LPVOID
unusedEip
,
PEXCEPTION_RECORD
pRecord
,
DWORD
returnEax
,
CONTEXT
*
context
)
void
WINAPI
EXC_RtlUnwind
(
PEXCEPTION_REGISTRATION_RECORD
pEndFrame
,
PVOID
unusedEip
,
PEXCEPTION_RECORD
pRecord
,
PVOID
returnEax
,
CONTEXT
*
context
)
{
EXCEPTION_RECORD
record
,
newrec
;
PEXCEPTION_REGISTRATION_RECORD
frame
,
dispatch
;
#ifdef __i386__
context
->
Eax
=
returnEax
;
context
->
Eax
=
(
DWORD
)
returnEax
;
#endif
/* build an exception record, if we do not have one */
...
...
@@ -383,8 +377,8 @@ void WINAPI EXC_RtlUnwind( PEXCEPTION_REGISTRATION_RECORD pEndFrame, LPVOID unus
#ifdef DEFINE_REGS_ENTRYPOINT
DEFINE_REGS_ENTRYPOINT
(
RtlUnwind
,
EXC_RtlUnwind
,
16
,
16
);
#else
void
WINAPI
RtlUnwind
(
P
EXCEPTION_REGISTRATION_RECOR
D
pEndFrame
,
L
PVOID
unusedEip
,
PEXCEPTION_RECORD
pRecord
,
DWOR
D
returnEax
)
void
WINAPI
RtlUnwind
(
P
VOI
D
pEndFrame
,
PVOID
unusedEip
,
PEXCEPTION_RECORD
pRecord
,
PVOI
D
returnEax
)
{
CONTEXT
context
;
memset
(
&
context
,
0
,
sizeof
(
context
)
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment