mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 23:20:05 +00:00
eeprom: idt_89hpesx: Drop kfree for memory allocated with devm_kzalloc
It's not necessary to free memory allocated with devm_kzalloc and using kfree leads to a double free. Fixes: cfad6425382e ("eeprom: Add IDT 89HPESx EEPROM/CSR driver") Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Serge Semin <fancer.lancer@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
aed74b140e
commit
f2d697604c
@ -1358,7 +1358,6 @@ static int idt_create_sysfs_files(struct idt_89hpesx_dev *pdev)
|
||||
pdev->ee_file->size = pdev->eesize;
|
||||
ret = sysfs_create_bin_file(&dev->kobj, pdev->ee_file);
|
||||
if (ret != 0) {
|
||||
kfree(pdev->ee_file);
|
||||
dev_err(dev, "Failed to create EEPROM sysfs-node");
|
||||
return ret;
|
||||
}
|
||||
@ -1380,9 +1379,6 @@ static void idt_remove_sysfs_files(struct idt_89hpesx_dev *pdev)
|
||||
|
||||
/* Remove EEPROM sysfs file */
|
||||
sysfs_remove_bin_file(&dev->kobj, pdev->ee_file);
|
||||
|
||||
/* Free memory allocated for bin_attribute structure */
|
||||
kfree(pdev->ee_file);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user