Skip to content

Commit

Permalink
LWIP 2.1.2 tcpip thread stack overflow fix.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tymoteuszblochmobica committed May 7, 2019
1 parent b21c278 commit 461efaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/lwipstack/lwip/src/netif/ppp/lwip_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 461efaa

Please sign in to comment.