[vlc-commits] [Git][videolan/vlc][master] access: satip: check header size

Steve Lhomme (@robUx4) gitlab at videolan.org
Tue Aug 25 08:22:50 UTC 2026



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
761f98ed by François Cartegnie at 2026-08-25T07:57:36+00:00
access: satip: check header size

fix #29710

- - - - -


1 changed file:

- modules/access/satip.c


Changes:

=====================================
modules/access/satip.c
=====================================
@@ -493,7 +493,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/761f98ed4e6f037239deb1a7a7308221e760c55c

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/761f98ed4e6f037239deb1a7a7308221e760c55c
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