You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in tproxy_example_conn.c in function "add_tcp_connection"
free_conn is called after
TAILQ_INSERT_HEAD(conn_list, conn, conn_ptrs);
That leads to freed ptrs being in the list => segfault.
Tail insertion should be the last action
The text was updated successfully, but these errors were encountered:
in tproxy_example_conn.c in function "add_tcp_connection"
free_conn is called after
TAILQ_INSERT_HEAD(conn_list, conn, conn_ptrs);
That leads to freed ptrs being in the list => segfault.
Tail insertion should be the last action
The text was updated successfully, but these errors were encountered: