There is no need to free NULL pointers. Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> diff --git a/arch/x86/kernel/cpu/perf_event_intel_pt.c b/arch/x86/kernel/cpu/perf_event_intel_pt.c index f5a3afc..c358877 100644 --- a/arch/x86/kernel/cpu/perf_event_intel_pt.c +++ b/arch/x86/kernel/cpu/perf_event_intel_pt.c @@ -135,12 +135,12 @@ static int __init pt_pmu_hw_init(void) size = sizeof(struct attribute *) * (ARRAY_SIZE(pt_caps) + 1); attrs = kzalloc(size, GFP_KERNEL); if (!attrs) - goto err_attrs; + return -ENOMEM; size = sizeof(struct dev_ext_attribute) * (ARRAY_SIZE(pt_caps) + 1); de_attrs = kzalloc(size, GFP_KERNEL); if (!de_attrs) - goto err_de_attrs; + goto err_attrs; for (i = 0; i < ARRAY_SIZE(pt_caps); i++) { de_attrs[i].attr.attr.name = pt_caps[i].name; @@ -155,8 +155,6 @@ static int __init pt_pmu_hw_init(void) pt_cap_group.attrs = attrs; return 0; -err_de_attrs: - kfree(de_attrs); err_attrs: kfree(attrs); -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html