]> git.proxmox.com Git - mirror_zfs.git/commit
libzfs: Fix missing va_end call on ENOSPC and EDQUOT cases
authorColin Ian King <colin.king@canonical.com>
Fri, 29 Jul 2016 11:40:30 +0000 (12:40 +0100)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 29 Jul 2016 22:34:12 +0000 (15:34 -0700)
commitb264d9b3e5b2b5b8eaeef7b34eb7b1b6caf4e4fb
tree0629cf521f81a573eae1669f6f454cdb17f88f50
parentba2fe6affb98543d8c3786fb47e49653391a3405
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
lib/libzfs/libzfs_util.c