Module: wine Branch: master Commit: ab8e9d23a08b5bf69d88fa48d9e62d96dffe38ee URL: http://source.winehq.org/git/wine.git/?a=commit;h=ab8e9d23a08b5bf69d88fa48d9...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sun Aug 24 00:40:56 2014 +0200
winedbg: Avoid a compiler warning about "use of uninitialized" in in types_extract_as_longlong.
---
programs/winedbg/types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/winedbg/types.c b/programs/winedbg/types.c index 03c69ab..de790c7 100644 --- a/programs/winedbg/types.c +++ b/programs/winedbg/types.c @@ -123,7 +123,7 @@ LONGLONG types_extract_as_longlong(const struct dbg_lvalue* lvalue, default: WINE_FIXME("Unsupported tag %u\n", tag); RaiseException(DEBUG_STATUS_NOT_AN_INTEGER, 0, 0, NULL); - break; + rtn = 0; }
return rtn;