Am 21.02.2012 15:18, schrieb Dan Carpenter: > p80211item_pstr6_t is the size of "msg1.bssid" (16 bytes) but > msg1.bssid.data is type p80211pstr6_t and it is smaller (7 bytes). We > had just set that memory to zeroes earlier and now we're writing over it > with 0xff because we're writing past the end of the struct. > > I don't know if this actually causes a problem. It may be that we > initialize the extra 0xff bytes correctly later. But the current code > is obviously wrong and we should fix it. > > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> > > diff --git a/drivers/staging/wlan-ng/cfg80211.c b/drivers/staging/wlan-ng/cfg80211.c > index fb466f4..d518b31 100644 > --- a/drivers/staging/wlan-ng/cfg80211.c > +++ b/drivers/staging/wlan-ng/cfg80211.c > @@ -356,7 +356,7 @@ int prism2_scan(struct wiphy *wiphy, struct net_device *dev, > msg1.msgcode = DIDmsg_dot11req_scan; > msg1.bsstype.data = P80211ENUM_bsstype_any; > > - memset(&(msg1.bssid.data), 0xFF, sizeof(p80211item_pstr6_t)); > + memset(&msg1.bssid.data, 0xFF, sizeof(msg1.bssid.data)); > msg1.bssid.data.len = 6; maybe msg1.bssid.data.len is related to msg1.bssid.data ? I guess sizeof(msg1.bssid.data)-1 (why -1). perhaps you can fix both ? re, wh > if (request->n_ssids > 0) { > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html > > _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/devel