From c848e90334ed08fad0b679fdd02c26a9cc44e907 Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Fri, 15 May 2026 16:49:46 +0900 Subject: engine:gpgconf: Increase the buffer size. * src/engine-gpgconf.c (gpgconf_read): Update to 2048. -- Signed-off-by: NIIBE Yutaka --- src/engine-gpgconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/engine-gpgconf.c b/src/engine-gpgconf.c index f7d1f3bb..9dacffd1 100644 --- a/src/engine-gpgconf.c +++ b/src/engine-gpgconf.c @@ -265,7 +265,7 @@ gpgconf_read (void *engine, const char *arg1, char *arg2, return gpg_error_from_syserror (); } - linebufsize = 1024; /* Usually enough for conf lines. */ + linebufsize = 2048; /* Usually enough for conf lines. */ linebuf = malloc (linebufsize); if (!linebuf) { -- cgit