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
107b289a
Commit
107b289a
authored
Sep 20, 2001
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a couple of bugs in _except_handler3.
parent
cf67b00a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
except.c
dlls/msvcrt/except.c
+7
-5
No files found.
dlls/msvcrt/except.c
View file @
107b289a
...
...
@@ -38,13 +38,15 @@ typedef struct _MSVCRT_EXCEPTION_FRAME
PEXCEPTION_POINTERS
xpointers
;
}
MSVCRT_EXCEPTION_FRAME
;
#define TRYLEVEL_END 0xff
/* End of trylevel list */
#define TRYLEVEL_END 0xff
ffffff
/* End of trylevel list */
#if defined(__GNUC__) && defined(__i386__)
#define CALL_FINALLY_BLOCK(code_block, base_ptr) \
__asm__ __volatile__ ("movl %0,%%eax; movl %1,%%ebp; call *%%eax" \
: : "g" (code_block), "g" (base_ptr))
inline
static
void
call_finally_block
(
void
*
code_block
,
void
*
base_ptr
)
{
__asm__
__volatile__
(
"movl %1,%%ebp; call *%%eax"
\
:
:
"a"
(
code_block
),
"g"
(
base_ptr
));
}
static
DWORD
MSVCRT_nested_handler
(
PEXCEPTION_RECORD
rec
,
struct
__EXCEPTION_FRAME
*
frame
,
...
...
@@ -201,7 +203,7 @@ int _except_handler3(PEXCEPTION_RECORD rec,
*/
frame
->
trylevel
=
pScopeTable
->
previousTryLevel
;
TRACE
(
"__finally block %p
\n
"
,
pScopeTable
[
trylevel
].
lpfnHandler
);
CALL_FINALLY_BLOCK
(
pScopeTable
[
trylevel
].
lpfnHandler
,
frame
->
_ebp
);
call_finally_block
(
pScopeTable
[
trylevel
].
lpfnHandler
,
&
frame
->
_ebp
);
ERR
(
"Returned from __finally block - expect crash!
\n
"
);
}
}
...
...
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