8157764: Better handling of interpolation plugins

Reviewed-by: prr, serb, mschoene
This commit is contained in:
Vadim Pakhnushev 2016-06-28 11:37:04 -07:00
parent 5763af1e29
commit b9b8be2d7c

View File

@ -244,7 +244,7 @@ void LinLerp1D(register const cmsUInt16Number Value[],
// To prevent out of bounds indexing
cmsINLINE cmsFloat32Number fclamp(cmsFloat32Number v)
{
return v < 0.0f ? 0.0f : (v > 1.0f ? 1.0f : v);
return v < 0.0f || isnan(v) ? 0.0f : (v > 1.0f ? 1.0f : v);
}
// Floating-point version of 1D interpolation