btrfs-progs: use calloc instead of malloc+memset
authorSilvio Fricke <silvio.fricke@gmail.com>
Tue, 29 Sep 2015 17:10:36 +0000 (19:10 +0200)
committerDavid Sterba <dsterba@suse.com>
Wed, 21 Oct 2015 12:29:26 +0000 (14:29 +0200)
commitc47a831cd653fa4ef4979ae7007e60037eddcb37
tree69d07646892cda8a71072e8b7920a6afac6ccaec
parent9c89f637a3d754ac401b7b6dabe5c7b8c336f848
btrfs-progs: use calloc instead of malloc+memset

This patch is generated from a coccinelle semantic patch:

identifier t;
expression e;
statement s;
@@
-t = malloc(e);
+t = calloc(1, e);
(
if (!t) s
|
if (t == NULL) s
|
)
-memset(t, 0, e);

Signed-off-by: Silvio Fricke <silvio.fricke@gmail.com>
[squashed patches into one]
Signed-off-by: David Sterba <dsterba@suse.com>
btrfs-image.c
btrfs-list.c
chunk-recover.c
cmds-check.c
disk-io.c
extent_io.c
mkfs.c
qgroup.c
quick-test.c
volumes.c