Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3db593e8 authored by Fabian Frederick's avatar Fabian Frederick Committed by Tyler Hicks
Browse files

fs/ecryptfs/messaging.c: remove null test before kfree



Fix checkpatch warning:
WARNING: kfree(NULL) is safe this check is probably not required

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Cc: ecryptfs@vger.kernel.org
Signed-off-by: default avatarTyler Hicks <tyhicks@canonical.com>
parent c4cf3ba4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -434,7 +434,6 @@ void ecryptfs_release_messaging(void)
		mutex_lock(&ecryptfs_msg_ctx_lists_mux);
		for (i = 0; i < ecryptfs_message_buf_len; i++) {
			mutex_lock(&ecryptfs_msg_ctx_arr[i].mux);
			if (ecryptfs_msg_ctx_arr[i].msg)
			kfree(ecryptfs_msg_ctx_arr[i].msg);
			mutex_unlock(&ecryptfs_msg_ctx_arr[i].mux);
		}