winedbg: Fix disassemble with end addresses exceeding 32-bit.
Signed-off-by: Bernhard Übelacker <bernhardu@mailbox.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d45d54ef18
commit
f174f18f2f
|
@ -769,7 +769,7 @@ void memory_disassemble(const struct dbg_lvalue* xstart,
|
||||||
const struct dbg_lvalue* xend, int instruction_count)
|
const struct dbg_lvalue* xend, int instruction_count)
|
||||||
{
|
{
|
||||||
static ADDRESS64 last = {0,0,0};
|
static ADDRESS64 last = {0,0,0};
|
||||||
int stop = 0;
|
dbg_lgint_t stop = 0;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (!xstart && !xend)
|
if (!xstart && !xend)
|
||||||
|
|
Loading…
Reference in New Issue