Michael Stefaniuc : gdiplus: Remove break after return (Smatch).
Module: wine Branch: master Commit: 51c9d050cfea30ebca961ca0c6d0e7617e9092a4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=51c9d050cfea30ebca961ca0c6... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Mon Mar 24 21:55:35 2008 +0100 gdiplus: Remove break after return (Smatch). --- dlls/gdiplus/image.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/dlls/gdiplus/image.c b/dlls/gdiplus/image.c index 2e5ef56..b1ec2c7 100644 --- a/dlls/gdiplus/image.c +++ b/dlls/gdiplus/image.c @@ -1089,7 +1089,6 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromHBITMAP(HBITMAP hbm, HPALETTE hpal, GpBi default: FIXME("don't know how to handle %d bpp\n", bm.bmBitsPixel); return InvalidParameter; - break; } retval = GdipCreateBitmapFromScan0(bm.bmWidth, bm.bmHeight, bm.bmWidthBytes,
participants (1)
-
Alexandre Julliard