From a1986b20e77cfa0676a00782bb283b4e461b4aed Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Mon, 12 Apr 2010 21:18:05 +0200 Subject: [PATCH] winedbg: Fix buffer size for 8-byte watchpoint. --- programs/winedbg/break.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winedbg/break.c b/programs/winedbg/break.c index e35250c56dc..6413c43a078 100644 --- a/programs/winedbg/break.c +++ b/programs/winedbg/break.c @@ -139,7 +139,7 @@ static int init_xpoint(int type, const ADDRESS64* addr) */ static BOOL get_watched_value(int num, DWORD64* val) { - BYTE buf[4]; + DWORD64 buf[1]; if (!dbg_read_memory(memory_to_linear_addr(&dbg_curr_process->bp[num].addr), buf, dbg_curr_process->bp[num].w.len + 1))