Commit 1fc50847 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

winedbg: Add missing break inside fetch_value (Coverity).

parent ed18b66c
......@@ -352,6 +352,7 @@ static BOOL fetch_value(const char* addr, unsigned sz, LONG* value)
case 2:
if (!dbg_read_memory(addr, &value16, sizeof(value16))) return FALSE;
*value = value16;
break;
case 4:
if (!dbg_read_memory(addr, value, sizeof(*value))) return FALSE;
break;
......
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