From 933b3af981d11628b2c5e98a6f97a74a529e830f Mon Sep 17 00:00:00 2001 From: Marcus Meissner <marcus@jet.franken.de> Date: Sat, 2 Apr 2011 09:36:56 +0200 Subject: [PATCH] mscms: Added missing breaks (Coverity). --- dlls/mscms/transform.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dlls/mscms/transform.c b/dlls/mscms/transform.c index 49230ecf207..a5b348644e0 100644 --- a/dlls/mscms/transform.c +++ b/dlls/mscms/transform.c @@ -384,6 +384,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count, ret = FALSE; break; } + break; } case COLOR_Lab: { @@ -399,6 +400,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count, ret = FALSE; break; } + break; } case COLOR_GRAY: { @@ -414,6 +416,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count, ret = FALSE; break; } + break; } case COLOR_CMYK: { @@ -429,6 +432,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count, ret = FALSE; break; } + break; } case COLOR_XYZ: { @@ -444,6 +448,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count, ret = FALSE; break; } + break; } default: FIXME("unhandled input/output pair: %d/%d\n", input_type, output_type); -- GitLab