Marcus Meissner : mscms: Added missing breaks (Coverity).

Alexandre Julliard julliard at winehq.org
Mon Apr 4 10:10:50 CDT 2011


Module: wine
Branch: master
Commit: 933b3af981d11628b2c5e98a6f97a74a529e830f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=933b3af981d11628b2c5e98a6f97a74a529e830f

Author: Marcus Meissner <marcus at jet.franken.de>
Date:   Sat Apr  2 09:36:56 2011 +0200

mscms: Added missing breaks (Coverity).

---

 dlls/mscms/transform.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/dlls/mscms/transform.c b/dlls/mscms/transform.c
index 49230ec..a5b3486 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);




More information about the wine-cvs mailing list