1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

winedbg: Add missing break inside fetch_value (Coverity).

This commit is contained in:
Fabian Maurer 2024-01-06 21:11:19 +01:00 committed by Alexandre Julliard
parent ed18b66ceb
commit 1fc50847e0

View file

@ -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;