We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2bd523 commit cc1e4dfCopy full SHA for cc1e4df
2 files changed
CHANGES.md
@@ -1,6 +1,12 @@
1
CHANGES - OpenPrinting CUPS 2.4.9 - (2024-06-11)
2
================================================
3
4
+Changes in CUPS v2.4.10 (TBD)
5
+-----------------------------
6
+
7
+- Fixed error handling when reading a mixed `1setOf` attribute.
8
9
10
Changes in CUPS v2.4.9 (2024-06-11)
11
-----------------------------------
12
cups/ipp.c
@@ -3102,7 +3102,8 @@ ippReadIO(void *src, /* I - Data source */
3102
{
3103
DEBUG_printf(("1ippReadIO: Converting %s attribute from %s to %s.",
3104
attr->name, ippTagString(value_tag), ippTagString(tag)));
3105
- ippSetValueTag(ipp, &attr, tag);
+ if (!ippSetValueTag(ipp, &attr, tag))
3106
+ goto rollback;
3107
}
3108
3109
else if (value_tag == IPP_TAG_INTEGER ||
0 commit comments