commit 74c0f6ba3cbdbdf2d8d0b7a868e091cb42c54918 from: Omar Polo date: Sat Jul 24 21:10:36 2021 UTC deallocate memory before exiting it's not really required, we're gonna quit anyway, but it's cleaner and helps reducing the clutter when using leak detection tools. commit - 5b762f01d4f82c9f2568e1928a42abd87e488bc3 commit + 74c0f6ba3cbdbdf2d8d0b7a868e091cb42c54918 blob - 0d19ad3f1f800b015cfdfebcc8d7ad0b7951350d blob + 73b8a5288c5921e98b40cf955d3a9aa0de7d8e1e --- net.c +++ net.c @@ -720,5 +720,11 @@ net_main(void) sandbox_net_process(); event_dispatch(); + + tls_config_free(tlsconf); + msgbuf_clear(&iev_ui->ibuf.w); + close(iev_ui->ibuf.fd); + free(iev_ui); + return 0; }