libiwinfo: clear buffer in nl80211_ifname2phy(), prevents running operations against...
authorJo-Philipp Wich <jow@openwrt.org>
Thu, 1 Dec 2011 16:18:37 +0000 (16:18 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Thu, 1 Dec 2011 16:18:37 +0000 (16:18 +0000)
contrib/package/iwinfo/src/iwinfo_nl80211.c

index d00d26b..83665cc 100644 (file)
@@ -298,6 +298,8 @@ static char * nl80211_ifname2phy(const char *ifname)
        static char phy[32] = { 0 };
        struct nl80211_msg_conveyor *req;
 
+       memset(phy, 0, sizeof(phy));
+
        req = nl80211_msg(ifname, NL80211_CMD_GET_WIPHY, 0);
        if (req)
        {