super0: fix crash on assemble if homehost is not set.

If homehost is not set - typically during early boot,
and assemble of v0.90 metadata arrays will crash.

Reported-by: Paweł Sikora <pluto@agmk.net>
Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
NeilBrown 2009-09-25 17:56:22 +10:00
parent d8419fe9e9
commit 40d28f0d1b
1 changed files with 7 additions and 3 deletions

View File

@ -305,9 +305,13 @@ static int match_home0(struct supertype *st, char *homehost)
{
mdp_super_t *sb = st->sb;
char buf[20];
char *hash = sha1_buffer(homehost,
strlen(homehost),
buf);
char *hash;
if (!homehost)
return 0;
hash = sha1_buffer(homehost,
strlen(homehost),
buf);
return (memcmp(&sb->set_uuid2, hash, 8)==0);
}