diff --git a/Assemble.c b/Assemble.c index 0cdeeda..ab8faed 100644 --- a/Assemble.c +++ b/Assemble.c @@ -386,9 +386,9 @@ int Assemble(struct supertype *st, char *mddev, int mdfd, if (c) c++; else c= info.name; if (isdigit(*c) && ((ident->autof & 7)==4 || (ident->autof&7)==6)) /* /dev/md/d0 style for partitionable */ - asprintf(&mddev, "/dev/md/d%s", c); + xasprintf(&mddev, "/dev/md/d%s", c); else - asprintf(&mddev, "/dev/md/%s", c); + xasprintf(&mddev, "/dev/md/%s", c); mdfd = open_mddev(mddev, ident->autof); if (mdfd < 0) { st->ss->free_super(st); diff --git a/config.c b/config.c index 121b337..78bbb9d 100644 --- a/config.c +++ b/config.c @@ -559,7 +559,7 @@ void mailfromline(char *line) alert_mail_from = strdup(w); else { char *t= NULL; - asprintf(&t, "%s %s", alert_mail_from, w); + xasprintf(&t, "%s %s", alert_mail_from, w); free(alert_mail_from); alert_mail_from = t; } diff --git a/mdadm.h b/mdadm.h index bc4b38e..b0a8c5e 100644 --- a/mdadm.h +++ b/mdadm.h @@ -528,6 +528,17 @@ extern int open_mddev(char *dev, int autof); extern int open_mddev_devnum(char *devname, int devnum, char *name, char *chosen_name, int parts); +#include +#include +static inline int xasprintf(char **strp, const char *fmt, ...) { + va_list ap; + int ret; + va_start(ap, fmt); + ret = asprintf(strp, fmt, ap); + va_end(ap); + assert(ret >= 0); + return ret; +} #define LEVEL_MULTIPATH (-4) #define LEVEL_LINEAR (-1)