- Updated ippfind to honor `SKIP-XXX` directives with `PAUSE`.
- Fixed IPP Everywhere v1.1 conformance issues in ippeveprinter.
- Fixed DNS-SD name collision support in ippeveprinter.
-- Fixed compiler warnings.
+- Fixed compiler and code analyzer warnings.
- Fixed TLS support on Windows.
- Fixed ippfind sub-type searches with Avahi.
- Fixed the default hostname used by ippeveprinter on macOS.
* Clear the buffer...
*/
- memset(LineBuffers[row], 0, header->cupsWidth * DotBytes);
+ memset(LineBuffers[row], 0, (size_t)header->cupsWidth * (size_t)DotBytes);
}
Planes[plane] = Planes[0] + plane * header->cupsBytesPerLine / NumPlanes;
if (ColorBits > 1)
- BitBuffer = malloc(ColorBits * ((header->cupsWidth + 7) / 8));
+ BitBuffer = malloc((size_t)ColorBits * (((size_t)header->cupsWidth + 7) / 8));
else
BitBuffer = NULL;