]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Staging: unisys: Use kcalloc instead of kzalloc to allocate array
authorShraddha Barke <shraddha.6596@gmail.com>
Fri, 9 Oct 2015 15:33:28 +0000 (21:03 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Oct 2015 03:49:29 +0000 (20:49 -0700)
commit5e757bc58d15b9fc7d36bb4fcc6f068489e2d29d
tree2f2d8f5ec75e882dab8ebb1bc4d3fc99fa66791a
parentbb30b15aeaeacc980facbe877ed23882e35fcd8c
Staging: unisys: Use kcalloc instead of kzalloc to allocate array

The advantage of kcalloc is, that will prevent integer overflows which
could result from the multiplication of number of elements and size and
it is also a bit nicer to read.

Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visornic/visornic_main.c