mscms: Don't produce unreachable code during conditional compilation.

Michael Stefaniuc mstefani at redhat.de
Tue Jul 24 15:29:05 CDT 2007


Found by Smatch.
---
 dlls/mscms/profile.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/mscms/profile.c b/dlls/mscms/profile.c
index 8c9d73c..4ecb361 100644
--- a/dlls/mscms/profile.c
+++ b/dlls/mscms/profile.c
@@ -305,7 +305,6 @@ BOOL WINAPI GetColorProfileFromHandle( HPROFILE profile, PBYTE buffer, PDWORD si
  */
 BOOL WINAPI GetColorProfileHeader( HPROFILE profile, PPROFILEHEADER header )
 {
-    BOOL ret = FALSE;
 #ifdef HAVE_LCMS
     icProfile *iccprofile = MSCMS_hprofile2iccprofile( profile );
 
@@ -316,8 +315,9 @@ BOOL WINAPI GetColorProfileHeader( HPROFILE profile, PPROFILEHEADER header )
     MSCMS_get_profile_header( iccprofile, header );
     return TRUE;
 
+#else
+    return FALSE;
 #endif /* HAVE_LCMS */
-    return ret;
 }
 
 /******************************************************************************
@@ -1065,7 +1065,6 @@ BOOL WINAPI SetColorProfileElement( HPROFILE profile, TAGTYPE type, DWORD offset
  */
 BOOL WINAPI SetColorProfileHeader( HPROFILE profile, PPROFILEHEADER header )
 {
-    BOOL ret = FALSE;
 #ifdef HAVE_LCMS
     icProfile *iccprofile = MSCMS_hprofile2iccprofile( profile );
     DWORD access = MSCMS_hprofile2access( profile );
@@ -1078,8 +1077,9 @@ BOOL WINAPI SetColorProfileHeader( HPROFILE profile, PPROFILEHEADER header )
     MSCMS_set_profile_header( iccprofile, header );
     return TRUE;
 
+#else
+    return FALSE;
 #endif /* HAVE_LCMS */
-    return ret;
 }
 
 /******************************************************************************
-- 
1.5.2.2
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-patches/attachments/20070724/d814f8a2/attachment.pgp


More information about the wine-patches mailing list