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
916c4b6b
Commit
916c4b6b
authored
Feb 17, 2006
by
Peter Beutner
Committed by
Alexandre Julliard
Feb 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Remove bogus code.
We can't just pop a exception record from the exception handler list which we haven't put there.
parent
58d3f145
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
cppexcept.c
dlls/msvcrt/cppexcept.c
+2
-3
No files found.
dlls/msvcrt/cppexcept.c
View file @
916c4b6b
...
...
@@ -259,7 +259,7 @@ inline static void call_catch_block( PEXCEPTION_RECORD rec, cxx_exception_frame
{
UINT
i
;
int
j
;
void
*
addr
,
*
prev_frame
,
*
object
=
(
void
*
)
rec
->
ExceptionInformation
[
1
];
void
*
addr
,
*
object
=
(
void
*
)
rec
->
ExceptionInformation
[
1
];
struct
catch_func_nested_frame
nested_frame
;
int
trylevel
=
frame
->
trylevel
;
thread_data_t
*
thread_data
=
msvcrt_get_thread_data
();
...
...
@@ -318,8 +318,7 @@ inline static void call_catch_block( PEXCEPTION_RECORD rec, cxx_exception_frame
if
(
info
&&
info
->
destructor
)
call_dtor
(
info
->
destructor
,
object
);
TRACE
(
"done, continuing at %p
\n
"
,
addr
);
prev_frame
=
NtCurrentTeb
()
->
Tib
.
ExceptionList
;
__wine_pop_frame
(
prev_frame
);
continue_after_catch
(
frame
,
addr
);
}
}
...
...
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