1
0
mirror of https://github.com/coturn/coturn.git synced 2025-11-01 07:21:04 +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) - Merge PR #288 (by Hristo Venev)
* pkg-config, and various cleanups in connfigure file * pkg-config, and various cleanups in connfigure file
- Add systemd notification for better systemd integration - 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> 24/06/2020 Oleg Moskalenko <mom040267@gmail.com> Mihály Mészáros <misi@majd.eu>
Version 4.5.1.3 'dan Eider': Version 4.5.1.3 'dan Eider':

View File

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