From: Patrick McHardy <kaber@trash.net>
To: davem@davemloft.net
Cc: netdev@vger.kernel.org, Patrick McHardy <kaber@trash.net>,
howells@redhat.com
Subject: [AFS 02/04]: Fix memory leak in SRXAFSCB_GetCapabilities
Date: Thu, 3 May 2007 02:04:16 +0200 (MEST) [thread overview]
Message-ID: <20070503000258.30775.91148.sendpatchset@localhost.localdomain> (raw)
In-Reply-To: <20070503000256.30775.81929.sendpatchset@localhost.localdomain>
[AFS]: Fix memory leak in SRXAFSCB_GetCapabilities
The interface array is not freed on exit.
Signed-off-by: Patrick McHardy <kaber@trash.net>
---
commit cef7f64469d521dd1dcb991e247ad02e84c3051c
tree bf5b8cd7a7e31053eaf826037c0b9fc97a69cd93
parent 831e920626706afd5ced0c72ca15c8af340bc157
author Patrick McHardy <kaber@trash.net> Wed, 02 May 2007 20:19:04 +0200
committer Patrick McHardy <kaber@trash.net> Wed, 02 May 2007 20:19:04 +0200
fs/afs/cmservice.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/fs/afs/cmservice.c b/fs/afs/cmservice.c
index 6685f4c..d5b2ad6 100644
--- a/fs/afs/cmservice.c
+++ b/fs/afs/cmservice.c
@@ -443,6 +443,7 @@ static void SRXAFSCB_GetCapabilities(struct work_struct *work)
reply.ia.netmask[loop] = ifs[loop].netmask.s_addr;
reply.ia.mtu[loop] = htonl(ifs[loop].mtu);
}
+ kfree(ifs);
}
reply.cap.capcount = htonl(1);
next prev parent reply other threads:[~2007-05-03 0:04 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-03 0:04 [PATCH 00/04]: Fix axrpc/afs related bugs Patrick McHardy
2007-05-03 0:04 ` [NETLINK 01/04]: Fix use after free in netlink_recvmsg Patrick McHardy
2007-05-03 0:04 ` Patrick McHardy [this message]
2007-05-03 0:04 ` [NET 03/04]: Add __dev_getfirstbyhwtype Patrick McHardy
2007-05-03 0:04 ` [AFS 04/04]: Replace rtnetlink client by direct dev_base walking Patrick McHardy
2007-05-03 0:07 ` [PATCH 00/04]: Fix axrpc/afs related bugs Patrick McHardy
2007-05-03 0:37 ` David Miller
2007-05-03 0:42 ` Patrick McHardy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070503000258.30775.91148.sendpatchset@localhost.localdomain \
--to=kaber@trash.net \
--cc=davem@davemloft.net \
--cc=howells@redhat.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).