libzfs: zfs_asprintf(): don't return undefined pointer
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #11993
This commit is contained in:
parent
87b671f3ac
commit
2babd20045
|
@ -782,8 +782,10 @@ zfs_asprintf(libzfs_handle_t *hdl, const char *fmt, ...)
|
|||
|
||||
va_end(ap);
|
||||
|
||||
if (err < 0)
|
||||
if (err < 0) {
|
||||
(void) no_memory(hdl);
|
||||
ret = NULL;
|
||||
}
|
||||
|
||||
return (ret);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue