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
3549810f
Commit
3549810f
authored
Jul 21, 2015
by
André Hentschel
Committed by
Alexandre Julliard
Jul 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Remove dead variable (Clang).
parent
da88dac2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
gdbproxy.c
programs/winedbg/gdbproxy.c
+1
-2
No files found.
programs/winedbg/gdbproxy.c
View file @
3549810f
...
...
@@ -1400,13 +1400,12 @@ static enum packet_return packet_read_registers(struct gdb_context* gdbctx)
{
int
i
;
CONTEXT
ctx
;
CONTEXT
*
pctx
=
&
gdbctx
->
context
;
assert
(
gdbctx
->
in_trap
);
if
(
dbg_curr_thread
!=
gdbctx
->
other_thread
&&
gdbctx
->
other_thread
)
{
if
(
!
fetch_context
(
gdbctx
,
gdbctx
->
other_thread
->
handle
,
pctx
=
&
ctx
))
if
(
!
fetch_context
(
gdbctx
,
gdbctx
->
other_thread
->
handle
,
&
ctx
))
return
packet_error
;
}
...
...
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