From cb4395b4031679c91f0a53286dc584d5f53d7b33 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 12 May 2026 11:56:16 +0200 Subject: [PATCH] rtsp: bump buf after rtsp_filter_rtp() Reported-by: Andrew Nesbit Closes #21563 --- lib/rtsp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rtsp.c b/lib/rtsp.c index 8ba168cb5b..b39b8a740b 100644 --- a/lib/rtsp.c +++ b/lib/rtsp.c @@ -887,6 +887,7 @@ static CURLcode rtsp_rtp_write_resp(struct Curl_easy *data, result = rtsp_filter_rtp(data, rtspc, buf, blen, &consumed); if(result) goto out; + buf += consumed; blen -= consumed; } }