2.6.28-stable review patch. If anyone has any objections, please let us know. ------------------ From: Vegard Nossum commit 0d54ee1c7850a954026deec4cd4885f331da35cc upstream. Plug this leak. Acked-by: David Howells Cc: James Morris Signed-off-by: Vegard Nossum Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- security/keys/keyctl.c | 1 + 1 file changed, 1 insertion(+) --- a/security/keys/keyctl.c +++ b/security/keys/keyctl.c @@ -270,6 +270,7 @@ long keyctl_join_session_keyring(const c /* join the session */ ret = join_session_keyring(name); + kfree(name); error: return ret;