]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
driver_nl80211: Do not send nl80211 message if beacon is not set yet
authorMichael Bernhard <michael.bernhard@bfh.ch>
Sun, 13 Apr 2008 09:41:30 +0000 (12:41 +0300)
committerJouni Malinen <j@w1.fi>
Sun, 13 Apr 2008 09:41:30 +0000 (12:41 +0300)
Signed-off-by: Michael Bernhard <michael.bernhard at bfh.ch>
hostapd/driver_nl80211.c

index cd2c66a17d77571da4918a17fc928a0a71903291..829e23d047f8c9b48bdbf67d462cf171cc106c53 100644 (file)
@@ -1152,6 +1152,9 @@ static int i802_set_beacon_int(void *priv, int value)
 
        drv->beacon_int = value;
 
+       if (!drv->beacon_set)
+               return 0;
+
        msg = nlmsg_alloc();
        if (!msg)
                goto out;