mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-07 08:29:28 -05:00
iwinfo: fix integer overflow in assoclist rate reporting (#11073)
SVN-Revision: 30825
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libiwinfo
|
||||
PKG_RELEASE:=31
|
||||
PKG_RELEASE:=32
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
PKG_CONFIG_DEPENDS := \
|
||||
|
||||
@@ -61,7 +61,7 @@ extern const char *IWINFO_OPMODE_NAMES[];
|
||||
|
||||
|
||||
struct iwinfo_rate_entry {
|
||||
uint16_t rate;
|
||||
uint32_t rate;
|
||||
int8_t mcs;
|
||||
uint8_t is_40mhz:1;
|
||||
uint8_t is_short_gi:1;
|
||||
|
||||
@@ -134,7 +134,8 @@ static char * format_rate(int rate)
|
||||
if (rate <= 0)
|
||||
snprintf(buf, sizeof(buf), "unknown");
|
||||
else
|
||||
snprintf(buf, sizeof(buf), "%.1f MBit/s", ((float)rate / 1000.0));
|
||||
snprintf(buf, sizeof(buf), "%d.%d MBit/s",
|
||||
rate / 1000, (rate % 1000) / 100);
|
||||
|
||||
return buf;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user