This is an automated email from the git hooks/post-receive script.

guillem pushed a commit to branch main
in repository dpkg.

View the commit online:
https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=6abd3246deff12af6c21546b6d2bf37a769e1927

commit 6abd3246deff12af6c21546b6d2bf37a769e1927
Author: Guillem Jover <[email protected]>
AuthorDate: Sun Nov 16 16:49:54 2025 +0100

    libdpkg: Double the emergency error message buffer size
    
    To compensate for the removal of the length limits in the output strings
    from the previous commit, we double the emergency error message buffer.
---
 lib/dpkg/ehandle.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/dpkg/ehandle.c b/lib/dpkg/ehandle.c
index b6543f9c3..5e12168e6 100644
--- a/lib/dpkg/ehandle.c
+++ b/lib/dpkg/ehandle.c
@@ -99,9 +99,9 @@ static struct {
         * - 6x255 For inserted strings (%s from pathnames, pkgnames, fields).
         * - 1x255 For constant text.
         * - 1x255 For strerror().
-        * - And the total doubled just in case.
+        * - And the total quadrupled just in case.
         */
-       char errmsg[4096];
+       char errmsg[8192];
 } emergency;
 
 /**

-- 
Dpkg.Org's dpkg

Reply via email to