[patch v2] batman: cleanup: change test for end of array

Marek Lindner lindner_marek at yahoo.de
Mon Mar 29 07:12:23 UTC 2010


On Sunday 28 March 2010 21:13:35 Dan Carpenter wrote:
> @@ -43,10 +43,7 @@ static struct device_client *device_client_hash[256];
> 
> -	for (i = 0; i < 256; i++)
> -		device_client_hash[i] = NULL;
> +	memset(&device_client_hash, 0, sizeof(device_client_hash));

I might be mistaken but it looks like the "&" is wrong here. Shouldn't it be:
memset(device_client_hash, 0, sizeof(device_client_hash));

Cheers,
Marek



More information about the devel mailing list