Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Jul 2021 13:49:18 GMT
From:      Kristof Provost <kp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 0e9f1892ec73 - main - libpfctl: memory leak fix
Message-ID:  <202107021349.162DnIrX045476@gitrepo.freebsd.org>

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

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

commit 0e9f1892ec739d7fbd854af699507167a0a5dde2
Author:     Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2021-06-30 11:02:35 +0000
Commit:     Kristof Provost <kp@FreeBSD.org>
CommitDate: 2021-07-02 12:48:25 +0000

    libpfctl: memory leak fix
    
    We must remember to free the nvlist we create from the kernel's response
    to DIOCGETSTATESNV, on every iteration.
    
    Reviewed by:    donner
    MFC after:      1 week
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
    Differential Revision:  https://reviews.freebsd.org/D30957
---
 lib/libpfctl/libpfctl.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/libpfctl/libpfctl.c b/lib/libpfctl/libpfctl.c
index 524e2472238e..bbb53edf8bc1 100644
--- a/lib/libpfctl/libpfctl.c
+++ b/lib/libpfctl/libpfctl.c
@@ -727,6 +727,7 @@ pfctl_get_states(int dev, struct pfctl_states *states)
 			goto out;
 		}
 
+		nvlist_destroy(nvl);
 		nvl = nvlist_unpack(nv.data, nv.len, 0);
 		if (nvl == NULL) {
 			error = EIO;



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