- Fix to increase size of the buffer for the win_svc reportev log

function.
This commit is contained in:
W.C.A. Wijngaards
2026-04-17 11:05:31 +02:00
parent 99c61c19ac
commit 24d502763c
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -11,6 +11,8 @@
- Fix compat/chacha_private sigma and tau definitions to use - Fix compat/chacha_private sigma and tau definitions to use
nonstring attribute. nonstring attribute.
- Fix compat/gmtime_r old style definition syntax. - 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 16 April 2026: Yorgos
- Merge #1406: Introduce new 'tls-protocols' configuration option. - Merge #1406: Introduce new 'tls-protocols' configuration option.
+1 -1
View File
@@ -127,7 +127,7 @@ hdlr(DWORD ctrl)
static void static void
reportev(const char* str) reportev(const char* str)
{ {
char b[256]; char b[512];
char e[256]; char e[256];
HANDLE* s; HANDLE* s;
LPCTSTR msg = b; LPCTSTR msg = b;