Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71940cfd authored by Byeongjo Park's avatar Byeongjo Park Committed by Hsiaoan Hsu
Browse files

VT: fixed an infinite loop of RR sending.



[Problem] ARTPConnection tried to send RR packet
  endlessly due to wrong iteration.
[Solution] Corrects the wrong iteration.

Bug: 214428241
Test: Verified

Signed-off-by: default avatarByeongjo Park <bjo.park@samsung.com>
Change-Id: Id9c741b4d8014789f4b453fea3f6321354bdd088
parent d7f33c5b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -558,6 +558,7 @@ void ARTPConnection::onPollStreams() {
                if (n != (ssize_t)buffer->size()) {
                    ALOGW("failed to send RTCP receiver report (%s).",
                            n >= 0 ? "connection gone" : strerror(errno));
                    ++it;
                    continue;
                }