From 20ecd8f777e71897893b5f7fdf878fc7e3201764 Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Wed, 9 Dec 2020 10:42:40 +0100 Subject: [PATCH] sdp: add missing continue after parsing b= lines otherwise this shows up in the logs as unhandled when it has been handled. BUG=None Change-Id: Ic081312a266d7a7ffff6220d2979cefa29a8591e Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/196652 Reviewed-by: Harald Alvestrand Commit-Queue: Harald Alvestrand Cr-Commit-Position: refs/heads/master@{#32810} --- pc/webrtc_sdp.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/pc/webrtc_sdp.cc b/pc/webrtc_sdp.cc index b500eb27f4..7f61a26293 100644 --- a/pc/webrtc_sdp.cc +++ b/pc/webrtc_sdp.cc @@ -3059,6 +3059,7 @@ bool ParseContent(const std::string& message, } media_desc->set_bandwidth(b); media_desc->set_bandwidth_type(bandwidth_type); + continue; } // Parse the media level connection data.