pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/39325?usp=email )
Change subject: osmo_io: iofd_msgb_alloc(): Allow allocating msgb of len=0xffff ......................................................................
osmo_io: iofd_msgb_alloc(): Allow allocating msgb of len=0xffff
Fixes: 8857f3b79826efe19d216cfd911490ffa81df02b
Change-Id: I6f9125916a301414301587f84fc3db98549a2f3f --- M src/core/osmo_io.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: laforge: Looks good to me, but someone else must approve fixeria: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/core/osmo_io.c b/src/core/osmo_io.c index 286ae24..45aaef3 100644 --- a/src/core/osmo_io.c +++ b/src/core/osmo_io.c @@ -172,7 +172,7 @@ { uint16_t headroom = iofd->msgb_alloc.headroom;
- OSMO_ASSERT(iofd->msgb_alloc.size < 0xffff - headroom); + OSMO_ASSERT(iofd->msgb_alloc.size <= 0xffff - headroom); return msgb_alloc_headroom_c(iofd, iofd->msgb_alloc.size + headroom, headroom, "osmo_io_msgb"); }