< prev index next >

src/java.desktop/share/native/liblcms/cmsopt.c

Print this page

        

@@ -814,13 +814,15 @@
 
         FixWhiteMisalignment(Dest, ColorSpace, OutputColorSpace);
     }
 
     *Lut = Dest;
-    return TRUE;
 
     cmsUNUSED_PARAMETER(Intent);
+
+    return TRUE;
+
 }
 
 
 // -----------------------------------------------------------------------------------------------------------------------------------------------
 // Fixes the gamma balancing of transform. This is described in my paper "Prelinearization Stages on

@@ -1239,13 +1241,13 @@
     }
 
     if (LutPlusCurves != NULL) cmsPipelineFree(LutPlusCurves);
     if (OptimizedLUT != NULL) cmsPipelineFree(OptimizedLUT);
 
+    cmsUNUSED_PARAMETER(Intent);
     return FALSE;
 
-    cmsUNUSED_PARAMETER(Intent);
 }
 
 
 // Curves optimizer ------------------------------------------------------------------------------------------------------------------
 

@@ -1487,16 +1489,17 @@
 
         _cmsFree(Src ->ContextID, GammaTables);
     }
 
     if (Dest != NULL) cmsPipelineFree(Dest);
-    return FALSE;
-
     cmsUNUSED_PARAMETER(Intent);
     cmsUNUSED_PARAMETER(InputFormat);
     cmsUNUSED_PARAMETER(OutputFormat);
     cmsUNUSED_PARAMETER(dwFlags);
+
+    return FALSE;
+
 }
 
 // -------------------------------------------------------------------------------------------------------------------------------------
 // LUT is Shaper - Matrix - Matrix - Shaper, which is very frequent when combining two matrix-shaper profiles
 
< prev index next >