Attention is currently required from: fixeria, pespin.
Patch set 5:Code-Review -1
View Change
1 comment:
File src/rtp.c:
Patch Set #4, Line 151: if (payload_len < 0) {
This is no longer possible according to checks above. […]
ah no, we cannot drop this, but also there is a mistake in patch set 1, because:
payload_len can still be zero.
If we want to read a padding length octet from the end, payload_len must be >= 1.
So we need a check here, but it should be
if (payload_len < 1)
instead of 0.
To view, visit change 37992. To unsubscribe, or for help writing mail filters, visit settings.
Gerrit-MessageType: comment
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: I30beeac45ff2d8c08905986af9fabfda071ddc5b
Gerrit-Change-Number: 37992
Gerrit-PatchSet: 5
Gerrit-Owner: neels <nhofmeyr@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: neels <nhofmeyr@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>
Gerrit-Attention: pespin <pespin@sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Comment-Date: Tue, 10 Sep 2024 00:32:25 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Comment-In-Reply-To: pespin <pespin@sysmocom.de>