Commit b4a81b87 authored by Wenwen Wang's avatar Wenwen Wang Committed by Tyler Hicks
Browse files

ecryptfs: fix a memory leak bug in ecryptfs_init_messaging()



In ecryptfs_init_messaging(), if the allocation for 'ecryptfs_msg_ctx_arr'
fails, the previously allocated 'ecryptfs_daemon_hash' is not deallocated,
leading to a memory leak bug. To fix this issue, free
'ecryptfs_daemon_hash' before returning the error.

Cc: stable@vger.kernel.org
Fixes: 88b4a07e ("[PATCH] eCryptfs: Public key transport mechanism")
Signed-off-by: default avatarWenwen Wang <wenwen@cs.uga.edu>
Signed-off-by: default avatarTyler Hicks <tyhicks@canonical.com>
parent fe2e082f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -379,6 +379,7 @@ int __init ecryptfs_init_messaging(void)
					* ecryptfs_message_buf_len),
				       GFP_KERNEL);
	if (!ecryptfs_msg_ctx_arr) {
		kfree(ecryptfs_daemon_hash);
		rc = -ENOMEM;
		goto out;
	}