commit | ebef9a9519fc5ccaf9d46da270a95b3d751445ce | [log] [tgz] |
---|---|---|
author | James Abbatiello <abbeyj@wpi.edu> | Fri Sep 01 01:22:05 2000 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Sep 01 01:22:05 2000 +0000 |
tree | 182cccaed19155d5ba4821e790244c2b8784e1ae | |
parent | ec6f37bf3ed28af11ff821ed930e5f2ea94883f6 [diff] [blame] |
Fix for debugger disassembly being off by one byte after using nexti on a "call" instruction.
diff --git a/debugger/winedbg.c b/debugger/winedbg.c index c5fb9ce..8825b70 100644 --- a/debugger/winedbg.c +++ b/debugger/winedbg.c
@@ -296,7 +296,8 @@ DEBUG_LoadEntryPoints("Loading new modules symbols:\n"); if (!force && is_debug && - DEBUG_ShouldContinue(code, + DEBUG_ShouldContinue(&addr, + code, DEBUG_CurrThread->dbg_exec_mode, &DEBUG_CurrThread->dbg_exec_count)) return FALSE;