[vlc-commits] [Git][videolan/vlc][master] access: satip: fix fragmented send loop
Steve Lhomme (@robUx4)
gitlab at videolan.org
Tue Sep 1 15:32:57 UTC 2026
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
b2d51fb1 by François Cartegnie at 2026-09-01T15:24:08+00:00
access: satip: fix fragmented send loop
fix #30072
Reported-by: Fabian Wahle (Hap Security)
- - - - -
1 changed file:
- modules/access/satip.c
Changes:
=====================================
modules/access/satip.c
=====================================
@@ -411,7 +411,7 @@ static void satip_teardown(void *data) {
return;
}
- ret = vlc_send(sys->tcp_sock, msg + sent, len, 0);
+ ret = vlc_send(sys->tcp_sock, msg + sent, len - sent, 0);
if (ret < 0) {
msg_Err(access, "Failed to send RTSP teardown: %d\n", ret);
free(msg);
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/b2d51fb1dead39d739a28b136e2675b4df8a1920
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/b2d51fb1dead39d739a28b136e2675b4df8a1920
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help
More information about the vlc-commits
mailing list