From: W.C.A. Wijngaards Date: Fri, 17 Apr 2026 09:05:31 +0000 (+0200) Subject: - Fix to increase size of the buffer for the win_svc reportev log X-Git-Tag: release-1.25.0rc1~21 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=24d502763c3e7d691df769ce3eaaa05bddcb9a98;p=thirdparty%2Funbound.git - Fix to increase size of the buffer for the win_svc reportev log function. --- diff --git a/doc/Changelog b/doc/Changelog index ec5fc00f1..33541ca39 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -11,6 +11,8 @@ - Fix compat/chacha_private sigma and tau definitions to use nonstring attribute. - Fix compat/gmtime_r old style definition syntax. + - Fix to increase size of the buffer for the win_svc reportev log + function. 16 April 2026: Yorgos - Merge #1406: Introduce new 'tls-protocols' configuration option. diff --git a/winrc/win_svc.c b/winrc/win_svc.c index c08ad97ec..c0792ce56 100644 --- a/winrc/win_svc.c +++ b/winrc/win_svc.c @@ -127,7 +127,7 @@ hdlr(DWORD ctrl) static void reportev(const char* str) { - char b[256]; + char b[512]; char e[256]; HANDLE* s; LPCTSTR msg = b;