Commit c24bd744 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

winedbg: Add explicit return in the error case of print_typed_basic.

parent ff05f2de
...@@ -367,6 +367,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue) ...@@ -367,6 +367,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
{ {
WINE_ERR("Couldn't get information\n"); WINE_ERR("Couldn't get information\n");
RaiseException(DEBUG_STATUS_INTERNAL_ERROR, 0, 0, NULL); RaiseException(DEBUG_STATUS_INTERNAL_ERROR, 0, 0, NULL);
return;
} }
size = (DWORD)size64; size = (DWORD)size64;
switch (bt) switch (bt)
......
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