Commit d15a04bd authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

winedbg: Add missing break (Coverity).

parent f026616c
......@@ -387,6 +387,7 @@ static BOOL fetch_value(const char* addr, unsigned sz, int* value)
if (!dbg_read_memory(addr, &value16, sizeof(value16)))
return FALSE;
*value = value16;
break;
case 32:
if (!dbg_read_memory(addr, value, sizeof(*value)))
return FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment