mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
NFC: fdp: fix incorrect free object
[ Upstream commit 517ce4e933 ]
The address of fw_vsc_cfg is on stack. Releasing it with devm_kfree() is
incorrect, which may result in a system crash or other security impacts.
The expected object to free is *fw_vsc_cfg.
Signed-off-by: Pan Bian <bianpan2016@163.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5580091ce7
commit
760a1f7f22
|
|
@ -267,7 +267,7 @@ static void fdp_nci_i2c_read_device_properties(struct device *dev,
|
|||
*fw_vsc_cfg, len);
|
||||
|
||||
if (r) {
|
||||
devm_kfree(dev, fw_vsc_cfg);
|
||||
devm_kfree(dev, *fw_vsc_cfg);
|
||||
goto vsc_read_err;
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user