From: Zhihao Cheng Date: Tue, 2 Jun 2020 01:30:45 +0000 (+0800) Subject: afs: Fix memory leak in afs_put_sysnames() X-Git-Tag: v5.7.6~125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3cd274437353f723b2b8e87f603fb9ca0942bc4;p=thirdparty%2Fkernel%2Fstable.git afs: Fix memory leak in afs_put_sysnames() [ Upstream commit 2ca068be09bf8e285036603823696140026dcbe7 ] Fix afs_put_sysnames() to actually free the specified afs_sysnames object after its reference count has been decreased to zero and its contents have been released. Fixes: 6f8880d8e681557 ("afs: Implement @sys substitution handling") Signed-off-by: Zhihao Cheng Signed-off-by: David Howells Signed-off-by: Sasha Levin --- diff --git a/fs/afs/proc.c b/fs/afs/proc.c index 468e1713bce13..6f34c84a0fd0a 100644 --- a/fs/afs/proc.c +++ b/fs/afs/proc.c @@ -563,6 +563,7 @@ void afs_put_sysnames(struct afs_sysnames *sysnames) if (sysnames->subs[i] != afs_init_sysname && sysnames->subs[i] != sysnames->blank) kfree(sysnames->subs[i]); + kfree(sysnames); } }