1
0
mirror of https://github.com/coturn/coturn.git synced 2025-10-31 15:00:59 +01:00
This commit is contained in:
Mészáros Mihály 2021-01-07 20:30:27 +00:00
parent 47008229ce
commit 9fcd86f3cc
2 changed files with 5 additions and 2 deletions

View File

@ -34,6 +34,8 @@ Version 4.5.2 'dan Eider':
- Merge PR #288 (by Hristo Venev)
* pkg-config, and various cleanups in connfigure file
- Add systemd notification for better systemd integration
- Fix Issue #621 (by ycaibb)
* Fix: Null pointer dereference on tcp_client_input_handler_rfc6062data function
24/06/2020 Oleg Moskalenko <mom040267@gmail.com> Mihály Mészáros <misi@majd.eu>
Version 4.5.1.3 'dan Eider':

View File

@ -1981,12 +1981,13 @@ static void tcp_client_input_handler_rfc6062data(ioa_socket_handle s, int event_
set_ioa_socket_tobeclosed(s);
}
if (!skip) {
if (!skip && ss) {
++(ss->peer_sent_packets);
ss->peer_sent_bytes += bytes;
}
turn_report_session_usage(ss, 0);
if(ss)
turn_report_session_usage(ss, 0);
}
static void tcp_conn_bind_timeout_handler(ioa_engine_handle e, void *arg)