We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f381a0 commit 776d6edCopy full SHA for 776d6ed
2 files changed
CHANGES.md
@@ -14,6 +14,7 @@ Changes in CUPS v2.4.13 (YYYY-MM-DD)
14
- Fixed subscription issues in the scheduler and D-Bus notifier (Issue #1235)
15
- Fixed support for IPP/PPD options with periods or underscores (Issue #1249)
16
- Fixed parsing of real numbers in PPD compiler source files (Issue #1263)
17
+- Fixed scheduler freezing with zombie clients (Issue #1264)
18
19
20
Changes in CUPS v2.4.12 (2025-04-08)
scheduler/client.c
@@ -463,7 +463,7 @@ cupsdCloseClient(cupsd_client_t *con) /* I - Client to close */
463
partial = 1;
464
#endif /* HAVE_TLS */
465
466
- if (partial)
+ if (partial && !httpError(con->http))
467
{
468
/*
469
* Only do a partial close so that the encrypted client gets everything.
0 commit comments