Re: [PATCH 1/5] staging: rtl8712: fix buggy size calculation

2015-07-24 Thread Dan Carpenter
On Thu, Jul 23, 2015 at 09:38:33PM -0700, Joshua Clayton wrote: r8712_get_ndis_wlan_bssid_ex_sz has a 6 * sizeof(unsigned long) where the underlying struct has a 6 * unsigned char. Simplify the calculation by just subtracting the variable part from the size of the struct. This also gets rid

[PATCH 1/5] staging: rtl8712: fix buggy size calculation

2015-07-23 Thread Joshua Clayton
r8712_get_ndis_wlan_bssid_ex_sz has a 6 * sizeof(unsigned long) where the underlying struct has a 6 * unsigned char. Simplify the calculation by just subtracting the variable part from the size of the struct. This also gets rid of a use of typedef NDIS_802_11_RATES_EX Signed-off-by: Joshua