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
05e54ac6
Commit
05e54ac6
authored
Jul 30, 2018
by
Zebediah Figura
Committed by
Alexandre Julliard
Aug 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Ignore EXCEPTION_INVALID_HANDLE.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1dbab1cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
gdbproxy.c
programs/winedbg/gdbproxy.c
+2
-0
tgt_active.c
programs/winedbg/tgt_active.c
+2
-0
No files found.
programs/winedbg/gdbproxy.c
View file @
05e54ac6
...
...
@@ -356,6 +356,8 @@ static BOOL handle_exception(struct gdb_context* gdbctx, EXCEPTION_DEBUG_INFO* e
ERR
(
"Cannot set name of thread %04x
\n
"
,
threadname
->
dwThreadID
);
return
DBG_CONTINUE
;
}
case
EXCEPTION_INVALID_HANDLE
:
return
DBG_CONTINUE
;
default:
fprintf
(
stderr
,
"Unhandled exception code 0x%08x
\n
"
,
rec
->
ExceptionCode
);
gdbctx
->
last_sig
=
SIGABRT
;
...
...
programs/winedbg/tgt_active.c
View file @
05e54ac6
...
...
@@ -239,6 +239,8 @@ static DWORD dbg_handle_exception(const EXCEPTION_RECORD* rec, BOOL first_chance
dbg_printf
(
"Thread ID=%04x renamed using MS VC6 extension (name==
\"
%.9s
\"
)
\n
"
,
pThread
->
tid
,
pThread
->
name
);
return
DBG_CONTINUE
;
case
EXCEPTION_INVALID_HANDLE
:
return
DBG_CONTINUE
;
}
if
(
first_chance
&&
!
is_debug
&&
!
DBG_IVAR
(
BreakOnFirstChance
)
&&
...
...
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