mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
libzfs: Fix missing va_end call on ENOSPC and EDQUOT cases
The switch statement in function zfs_standard_error_fmt for the ENOSPC and EDQUOT cases returns immediately and unlike all other cases in the switch this does not perform the va_end call. Perform a break which ends up calling va_end rather than returning immediately. Found by static analysis with CoverityScan 0.8.5 Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #4900
This commit is contained in:
parent
ba2fe6affb
commit
b264d9b3e5
@ -390,7 +390,7 @@ zfs_standard_error_fmt(libzfs_handle_t *hdl, int error, const char *fmt, ...)
|
|||||||
case ENOSPC:
|
case ENOSPC:
|
||||||
case EDQUOT:
|
case EDQUOT:
|
||||||
zfs_verror(hdl, EZFS_NOSPC, fmt, ap);
|
zfs_verror(hdl, EZFS_NOSPC, fmt, ap);
|
||||||
return (-1);
|
break;
|
||||||
|
|
||||||
case EEXIST:
|
case EEXIST:
|
||||||
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
|
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
|
||||||
|
Loading…
Reference in New Issue
Block a user