[package] iwinfo: fix integer overflow in assoclist rate reporting (#11073)
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 5 Mar 2012 17:52:46 +0000 (17:52 +0000)
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 5 Mar 2012 17:52:46 +0000 (17:52 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30825 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/iwinfo/Makefile
package/iwinfo/src/include/iwinfo.h
package/iwinfo/src/iwinfo_cli.c

index f74fe2f..db8a3da 100644 (file)
@@ -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 := \
index 9e78bab..868c10b 100644 (file)
@@ -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;
index 0fdb21e..7ec5aef 100644 (file)
@@ -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;
 }
This page took 0.029781 seconds and 4 git commands to generate.