Merge pull request #10456 from tymoteuszblochmobica/multihoming

LWIP 2.1.2 tcpip thread stack overflow fix.
pull/10573/head
Martin Kojtal 2019-05-13 14:17:36 +01:00 committed by GitHub
commit 1aa95c017b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -603,7 +603,7 @@ void ppp_print_string(const u_char *p, int len, void (*printer) (void *, const c
* ppp_logit - does the hard work for fatal et al.
*/
static void ppp_logit(int level, const char *fmt, va_list args) {
char buf[1024];
char buf[256];
ppp_vslprintf(buf, sizeof(buf), fmt, args);
ppp_log_write(level, buf);