diff options
| author | Hauke Mehrtens | 2026-06-18 22:19:51 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2026-06-19 10:52:34 +0000 |
| commit | 7b8ce1e0951cf3f8944da4ea48ef21af76da0812 (patch) | |
| tree | 9687648a6d67fa38d20d1870228e44d251bc84e5 | |
| parent | 13c493cabaadc6ba7a0cc86a7e334e27b0f4edb0 (diff) | |
| download | openwrt-7b8ce1e0951cf3f8944da4ea48ef21af76da0812.tar.gz | |
libubox: update to Git openwrt-25.12 (2026-06-19)
8a28fbfab1b0 blob: fix wrong type for realloc result in blob_buffer_grow()
da9183de3707 json_script: convert recursive __json_script_file_free() to iterative
3c566439b634 usock: fix off-by-one in nanosecond normalization in poll_restart()
e1dc23a2518c uloop: usock: add error checking for fcntl and remove duplicate include
ad15219cb1fa uloop: fix undefined behavior in signal bit operations for signals > 32
48111664b51f blobmsg: fix policy name length overflow and add bounds check in blobmsg_parse()
9db2171daf28 usock: fix integer overflow in timeout calculations
320322291ece udebug: fix double off-by-one in udebug_entry_vprintf()
afc0fa8680e2 blobmsg_json: fix integer overflow in blobmsg_puts()
6f01162d29d6 blobmsg_json: floor strbuf size and tighten the post-format guard
6f6c861173f0 blobmsg: fix unsigned integer overflow in blobmsg_alloc_string_buffer()
52868080dc88 blobmsg: use correct byte-order macro when setting BLOB_ATTR_EXTENDED
3bbf83c3a3eb blobmsg_json: fix double format string to avoid truncation and data loss
1d80ee2fd95f jshn: fix integer overflow and type confusion in jshn_parse_file
b4a718b6d374 blob: fix integer overflow in buffer growth functions
315e0af12629 blob: use size_t for blob_memdup() length
069f2571f144 json_script: avoid alloca() on attacker-controlled pattern length
eda76daa1ed7 blobmsg: fix integer overflow in blobmsg_realloc_string_buffer()
f7167d2ec81c ustream: avoid INT_MAX overflow on malloc in ustream_vprintf()
e4427989b812 md5: detect read errors in md5sum() instead of returning a bogus hash
e529855a1110 json_script: use size_t for calloc_a() length argument
81ca13e97463 udebug-remote: pass size_t to calloc_a()
ad775bd35685 treewide: use size_t for length variables to avoid implicit narrowing
7dd127841e82 blob, udebug-remote: silence -Wconversion warnings in trivial cases
Link: https://github.com/openwrt/openwrt/pull/23869
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/libs/libubox/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/libs/libubox/Makefile b/package/libs/libubox/Makefile index 6fac67d421..59329deb3d 100644 --- a/package/libs/libubox/Makefile +++ b/package/libs/libubox/Makefile @@ -1,13 +1,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libubox -PKG_RELEASE=2 +PKG_RELEASE=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(PROJECT_GIT)/project/libubox.git -PKG_MIRROR_HASH:=55b2298ea74bb4c7267e4b615d442aeff601e0de88ec0e641e4c40eed8454e85 -PKG_SOURCE_DATE:=2026-03-13 -PKG_SOURCE_VERSION:=815633847cd32ffe6da28943cbeb37edc88265c8 +PKG_MIRROR_HASH:=82f1a83069c0636722fc1c57d567a21f8b14d14904c8bf10059d2a467edd2a10 +PKG_SOURCE_DATE:=2026-06-19 +PKG_SOURCE_VERSION:=7dd127841e82eb1cfb61185da37dde7b9bd9ba6d # PKG_ABI_VERSION:=$(call abi_version_str,$(PKG_SOURCE_DATE)) PKG_ABI_VERSION:=20260213 CMAKE_INSTALL:=1 |