From c24bd744867771b9f047c4e664bcea5120255810 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 9 Aug 2014 20:38:49 -0500 Subject: [PATCH] winedbg: Add explicit return in the error case of print_typed_basic. --- programs/winedbg/memory.c | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/winedbg/memory.c b/programs/winedbg/memory.c index af99229f775..78a049309d8 100644 --- a/programs/winedbg/memory.c +++ b/programs/winedbg/memory.c @@ -367,6 +367,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue) { WINE_ERR("Couldn't get information\n"); RaiseException(DEBUG_STATUS_INTERNAL_ERROR, 0, 0, NULL); + return; } size = (DWORD)size64; switch (bt)