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

Commit eb29835f authored by Seunghun Lee's avatar Seunghun Lee Committed by Greg Kroah-Hartman
Browse files

staging: android: fix a possible memory leak



Memory allocated by kstrdup should be freed.

CC: Brian Swetland <swetland@google.com>
Acked-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarSeunghun Lee <waydi1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 299ef8cd
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -790,7 +790,7 @@ static int __init create_log(char *log_name, int size)
	if (unlikely(ret)) {
		pr_err("failed to register misc device for log '%s'!\n",
				log->misc.name);
		goto out_free_log;
		goto out_free_misc_name;
	}

	pr_info("created %luK log '%s'\n",
@@ -798,6 +798,9 @@ static int __init create_log(char *log_name, int size)

	return 0;

out_free_misc_name:
	kfree(log->misc.name);

out_free_log:
	kfree(log);