We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible typo at image-colorspace.c:241. In function cupsImageCMYKToCMY() in while() loop value y might be m.
cupsImageCMYKToCMY()
while()
y
m
Comparison of two if statements:
if
if (m < 255) https://github.com/OpenPrinting/cups-filters/blob/d72184e725591f10e2b404b36fe3bf5bc304a299/cupsfilters/image-colorspace.c#L240-L243
if (m < 255)
if (y < 255) https://github.com/OpenPrinting/cups-filters/blob/d72184e725591f10e2b404b36fe3bf5bc304a299/cupsfilters/image-colorspace.c#L245-L248
if (y < 255)
Found by Linux Verification Center (portal.linuxtesting.ru) with SVACE. Author A. Slepykh.
The text was updated successfully, but these errors were encountered:
c3a997f
No branches or pull requests
Possible typo at image-colorspace.c:241. In function
cupsImageCMYKToCMY()
inwhile()
loop valuey
might bem
.Comparison of two
if
statements:if (m < 255)
https://github.com/OpenPrinting/cups-filters/blob/d72184e725591f10e2b404b36fe3bf5bc304a299/cupsfilters/image-colorspace.c#L240-L243
if (y < 255)
https://github.com/OpenPrinting/cups-filters/blob/d72184e725591f10e2b404b36fe3bf5bc304a299/cupsfilters/image-colorspace.c#L245-L248
Found by Linux Verification Center (portal.linuxtesting.ru) with SVACE.
Author A. Slepykh.
The text was updated successfully, but these errors were encountered: