summaryrefslogtreecommitdiffstats
path: root/super0.c
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2008-07-12 20:27:36 +1000
committerNeil Brown <neilb@suse.de>2008-07-12 20:27:36 +1000
commitef609477203013666d186cf913e93f4a8843b6db (patch)
tree527f675f416c53dbc5e031d634573d6a9e89fad7 /super0.c
parent904c1ef77bcb3e3b151f544acf104cd36acdc5f6 (diff)
downloadmdadm-ef609477203013666d186cf913e93f4a8843b6db.tar.gz
mdadm-ef609477203013666d186cf913e93f4a8843b6db.tar.xz
mdadm-ef609477203013666d186cf913e93f4a8843b6db.zip
Always initialise a struct super_type to zero
Diffstat (limited to 'super0.c')
-rw-r--r--super0.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/super0.c b/super0.c
index b0a625b..1ca3536 100644
--- a/super0.c
+++ b/super0.c
@@ -869,6 +869,7 @@ static struct supertype *match_metadata_desc0(char *arg)
struct supertype *st = malloc(sizeof(*st));
if (!st) return st;
+ memset(st, 0, sizeof(*st));
st->ss = &super0;
st->info = NULL;
st->minor_version = 90;