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
7ba6502d
Commit
7ba6502d
authored
Aug 23, 2005
by
Glenn Wurster
Committed by
Alexandre Julliard
Aug 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't pass on EH_STACK_INVALID exceptions.
parent
3433676f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
winedbg.c
programs/winedbg/winedbg.c
+6
-2
No files found.
programs/winedbg/winedbg.c
View file @
7ba6502d
...
@@ -38,7 +38,7 @@
...
@@ -38,7 +38,7 @@
* for that)
* for that)
* + set a mode where winedbg would start (postmortem debugging) from a minidump
* + set a mode where winedbg would start (postmortem debugging) from a minidump
* - CPU adherence
* - CPU adherence
* + we always assume the stack grows
has a
n i386 (ie downwards)
* + we always assume the stack grows
as o
n i386 (ie downwards)
* - UI
* - UI
* + enable back the limited output (depth of structure printing and number of
* + enable back the limited output (depth of structure printing and number of
* lines)
* lines)
...
@@ -609,7 +609,8 @@ static DWORD dbg_handle_exception(const EXCEPTION_RECORD* rec, BOOL first_chance
...
@@ -609,7 +609,8 @@ static DWORD dbg_handle_exception(const EXCEPTION_RECORD* rec, BOOL first_chance
return
DBG_CONTINUE
;
return
DBG_CONTINUE
;
}
}
if
(
first_chance
&&
!
is_debug
&&
!
DBG_IVAR
(
BreakOnFirstChance
))
if
(
first_chance
&&
!
is_debug
&&
!
DBG_IVAR
(
BreakOnFirstChance
)
&&
!
(
rec
->
ExceptionFlags
&
EH_STACK_INVALID
))
{
{
/* pass exception to program except for debug exceptions */
/* pass exception to program except for debug exceptions */
return
DBG_EXCEPTION_NOT_HANDLED
;
return
DBG_EXCEPTION_NOT_HANDLED
;
...
@@ -726,6 +727,9 @@ static DWORD dbg_handle_exception(const EXCEPTION_RECORD* rec, BOOL first_chance
...
@@ -726,6 +727,9 @@ static DWORD dbg_handle_exception(const EXCEPTION_RECORD* rec, BOOL first_chance
break
;
break
;
}
}
}
}
if
(
(
rec
->
ExceptionFlags
&
EH_STACK_INVALID
)
)
{
dbg_printf
(
", invalid program stack"
);
}
if
(
dbg_action_mode
==
automatic_mode
)
if
(
dbg_action_mode
==
automatic_mode
)
{
{
...
...
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