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

Commit ce57cba3 authored by Dmitry Torokhov's avatar Dmitry Torokhov Committed by Greg Kroah-Hartman
Browse files

firmware: vpd: avoid potential use-after-free when destroying section



We should not free info->key before we remove sysfs attribute that uses
this data as its name.

Fixes: 049a59db ("firmware: Google VPD sysfs driver")
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
Reviewed-by: default avatarGuenter Roeck <groeck@chromium.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7f53de20
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,8 +158,8 @@ static void vpd_section_attrib_destroy(struct vpd_section *sec)
	struct vpd_attrib_info *temp;

	list_for_each_entry_safe(info, temp, &sec->attribs, list) {
		kfree(info->key);
		sysfs_remove_bin_file(sec->kobj, &info->bin_attr);
		kfree(info->key);
		kfree(info);
	}
}