Skip to content
Success

#21439 (Apr 6, 2026, 2:44:24 PM)

Started 1 day 1 hr ago
Took 4 min 8 sec on build4-deb12build-ansible

Started by upstream project gerrit-osmo-bsc build number 1733
originally caused by:

This run spent:

  • 38 sec waiting;
  • 4 min 8 sec build duration;
  • 4 min 46 sec total from scheduled to completion.
Revision: b5554a67722a0660a78ab882d425ca45596c849b
Repository: $GERRIT_REPO_URL
  • master
ipaccess: fix buffer overread in ipacc_parse_supp_flags()

The loop used OSMO_MAX(e->len, 4), which iterates at least 4 times
even when the IE is shorter than 4 bytes, causing a buffer overread.
Replace with OSMO_MIN(e->len, sizeof(u32)) to cap the iteration both
at the actual IE length and at the uint32_t accumulator size.

Change-Id: I97c69a71eb650cbef1cc3652d0a2a966cfd6cf60
Vadim Yanitskiy at