]> Git Repo - linux.git/commitdiff
ecryptfs: fix a memory leak bug in ecryptfs_init_messaging()
authorWenwen Wang <[email protected]>
Tue, 20 Aug 2019 05:33:54 +0000 (00:33 -0500)
committerTyler Hicks <[email protected]>
Tue, 20 Aug 2019 07:02:22 +0000 (07:02 +0000)
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: [email protected]
Fixes: 88b4a07e6610 ("[PATCH] eCryptfs: Public key transport mechanism")
Signed-off-by: Wenwen Wang <[email protected]>
Signed-off-by: Tyler Hicks <[email protected]>
fs/ecryptfs/messaging.c

index d668e60b85b556dd27b08a345a222688b795257c..c05ca39aa4494f9077768fc9e04b21d817a3401b 100644 (file)
@@ -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;
        }
This page took 0.053877 seconds and 4 git commands to generate.