[vlc-commits] [Git][videolan/vlc][3.0.x] access: satip: check header size
Steve Lhomme (@robUx4)
gitlab at videolan.org
Fri Aug 28 09:43:45 UTC 2026
Steve Lhomme pushed to branch 3.0.x at VideoLAN / VLC
Commits:
89786b8b by François Cartegnie at 2026-08-28T09:16:57+00:00
access: satip: check header size
fix #29710
(cherry picked from commit 761f98ed4e6f037239deb1a7a7308221e760c55c)
- - - - -
1 changed file:
- modules/access/satip.c
Changes:
=====================================
modules/access/satip.c
=====================================
@@ -472,7 +472,7 @@ static void *satip_thread(void *data) {
block_t *block = input_blocks[i];
len = msgs[i].msg_len;
- if (check_rtp_seq(access, block))
+ if (len < RTP_HEADER_SIZE || check_rtp_seq(access, block))
continue;
block->p_buffer += RTP_HEADER_SIZE;
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/89786b8b4bada972aa3d9b2e5b498da8280bc65b
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/89786b8b4bada972aa3d9b2e5b498da8280bc65b
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