Skip to content

Commit 461efaa

Browse files
LWIP 2.1.2 tcpip thread stack overflow fix.
Applied missing LWIP patch to PPP/utils.c "Major Refactoring & extensions" commited on May 23, 201 by hasnainvirk LWIP 2.1.2 tcpip thread stack is restored to 1200 bytes
1 parent b21c278 commit 461efaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/lwipstack/lwip/src/netif/ppp/lwip_utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ void ppp_print_string(const u_char *p, int len, void (*printer) (void *, const c
603603
* ppp_logit - does the hard work for fatal et al.
604604
*/
605605
static void ppp_logit(int level, const char *fmt, va_list args) {
606-
char buf[1024];
606+
char buf[256];
607607

608608
ppp_vslprintf(buf, sizeof(buf), fmt, args);
609609
ppp_log_write(level, buf);

0 commit comments

Comments
 (0)