X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fmdadm.git;a=blobdiff_plain;f=super1.c;h=0fe54e97c22fda05c350774d8ea23f8cca93440b;hp=211be82356d0df94913da900693dfe55aa60881d;hb=ef609477203013666d186cf913e93f4a8843b6db;hpb=904c1ef77bcb3e3b151f544acf104cd36acdc5f6 diff --git a/super1.c b/super1.c index 211be823..0fe54e97 100644 --- a/super1.c +++ b/super1.c @@ -1073,8 +1073,8 @@ static int load_super1(struct supertype *st, int fd, char *devname) struct supertype tst; __u64 bestctime = 0; /* guess... choose latest ctime */ + memset(&tst, 0, sizeof(tst)); tst.ss = &super1; - tst.sb = NULL; for (tst.minor_version = 0; tst.minor_version <= 2 ; tst.minor_version++) { switch(load_super1(&tst, fd, devname)) { case 0: super = tst.sb; @@ -1216,6 +1216,7 @@ static struct supertype *match_metadata_desc1(char *arg) struct supertype *st = malloc(sizeof(*st)); if (!st) return st; + memset(st, 0, sizeof(*st)); st->ss = &super1; st->max_devs = 384; st->sb = NULL;