We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f372b2 commit c338124Copy full SHA for c338124
2 files changed
CHANGES.md
@@ -32,6 +32,7 @@ Changes in CUPS v2.4.17 (YYYY-MM-DD)
32
- Fixed a bug when then `ippFindXxx` and `ippSetXxx` functions were mixed.
33
- Fixed the mapping of supply type keywords to SNMP names.
34
- Fixed a bug in the IPP backend when SNMP was disabled.
35
+- Fixed a crash bug in the rastertoepson filter.
36
37
38
Changes in CUPS v2.4.16 (2025-12-04)
filter/rastertoepson.c
@@ -275,6 +275,12 @@ StartPage(
275
else
276
NumPlanes = 1;
277
278
+ if (header->cupsBytesPerLine < NumPlanes)
279
+ {
280
+ fputs("ERROR: Bad raster data.\n", stderr);
281
+ exit(1);
282
+ }
283
+
284
Feed = 0; /* No blank lines yet */
285
286
/*
0 commit comments