winedbg: Add missing break (Coverity).

This commit is contained in:
Marcus Meissner 2011-03-18 22:05:22 +01:00 committed by Alexandre Julliard
parent f026616c22
commit d15a04bdce
1 changed files with 1 additions and 0 deletions

View File

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