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;