mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
[PATCH] atmel: memset correct range
Specify the correct range when calling memset in atmel_get_range. Do this by specifying the size of the structure, rather than the size of the pointer. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
097688ef47
commit
f36be62115
@ -2217,7 +2217,7 @@ static int atmel_get_range(struct net_device *dev,
|
||||
int k,i,j;
|
||||
|
||||
dwrq->length = sizeof(struct iw_range);
|
||||
memset(range, 0, sizeof(range));
|
||||
memset(range, 0, sizeof(struct iw_range));
|
||||
range->min_nwid = 0x0000;
|
||||
range->max_nwid = 0x0000;
|
||||
range->num_channels = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user