Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Dec 2023 18:55:54 GMT
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: c1c55da49fd5 - main - pfil: don't leak pfil_head_t on interface detach
Message-ID:  <202312211855.3BLIts7m000476@gitrepo.freebsd.org>

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

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

commit c1c55da49fd55c01771f8cf1f7255a37b79735d7
Author:     Gleb Smirnoff <glebius@FreeBSD.org>
AuthorDate: 2023-12-21 18:53:49 +0000
Commit:     Gleb Smirnoff <glebius@FreeBSD.org>
CommitDate: 2023-12-21 18:53:49 +0000

    pfil: don't leak pfil_head_t on interface detach
    
    PR:             256714
    Submitted by:   jcaplan@blackberry.com
---
 sys/net/pfil.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/net/pfil.c b/sys/net/pfil.c
index 4b4eeca362c1..3ceffcefb758 100644
--- a/sys/net/pfil.c
+++ b/sys/net/pfil.c
@@ -295,6 +295,7 @@ pfil_head_unregister(pfil_head_t ph)
 		free(link, M_PFIL);
 	}
 	PFIL_UNLOCK();
+	free(ph, M_PFIL);
 }
 
 pfil_hook_t



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