Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Jul 2021 11:53:55 GMT
From:      Kristof Provost <kp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: fa21fc599d94 - stable/13 - pf: Handle errors returned by pf_killstates()
Message-ID:  <202107161153.16GBrt6l016023@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kp:

URL: https://cgit.FreeBSD.org/src/commit/?id=fa21fc599d948ce822adf471ba876dfb228a9ec9

commit fa21fc599d948ce822adf471ba876dfb228a9ec9
Author:     Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2021-07-05 12:21:03 +0000
Commit:     Kristof Provost <kp@FreeBSD.org>
CommitDate: 2021-07-16 09:08:27 +0000

    pf: Handle errors returned by pf_killstates()
    
    Happily this wasn't a real bug, because pf_killstates() never fails, but
    we should check the return value anyway, in case it does ever start
    returning errors.
    
    Reported by:    clang --analyze
    MFC after:      1 week
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
    
    (cherry picked from commit fa96701c8abbc29aad7f8f8d6b823bd7f89c6c15)
---
 sys/netpfil/pf/pf_ioctl.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys/netpfil/pf/pf_ioctl.c b/sys/netpfil/pf/pf_ioctl.c
index 694134c6c663..68ccb741710a 100644
--- a/sys/netpfil/pf/pf_ioctl.c
+++ b/sys/netpfil/pf/pf_ioctl.c
@@ -4888,6 +4888,8 @@ pf_killstates_nv(struct pfioc_nv *nv)
 		ERROUT(error);
 
 	error = pf_killstates(&kill, &killed);
+	if (error)
+		ERROUT(error);
 
 	free(nvlpacked, M_NVLIST);
 	nvlpacked = NULL;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107161153.16GBrt6l016023>