libiwinfo: clear buffer in nl80211_ifname2phy(), prevents running operations against...
[project/luci.git] / contrib / package / iwinfo / src / iwinfo_nl80211.c
index d00d26b0adb401668dc71e3e93d134e8ee922fab..83665ccc8d88eb9dff085d246d93b865b3bd3eaa 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)
        {