do not exit on failed smprintf
This commit is contained in:
parent
2fdb2ede04
commit
db07244cb8
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ smprintf(const char *fmt, ...)
|
||||||
ret = malloc(++len);
|
ret = malloc(++len);
|
||||||
if (ret == NULL) {
|
if (ret == NULL) {
|
||||||
warn("Malloc failed.");
|
warn("Malloc failed.");
|
||||||
exit(1);
|
return "n/a";
|
||||||
}
|
}
|
||||||
|
|
||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
|
|
Loading…
Reference in a new issue