Commit 8bba13b1 authored by Colin Ian King's avatar Colin Ian King Committed by Marcel Holtmann

Bluetooth: btintel: Fix incorrect out of memory check

Currently *ven_data is being assigned the return from a kmalloc call but
the out-of-memory check is checking ven_data and not *ven_data. Fix this
by adding the missing dereference * operator,

Addresses-Coverity: ("Dereference null return")
Fixes: 70dd9789 ("Bluetooth: btintel: Define a callback to fetch codec config data")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 5031ffcc
...@@ -2176,7 +2176,7 @@ static int btintel_get_codec_config_data(struct hci_dev *hdev, ...@@ -2176,7 +2176,7 @@ static int btintel_get_codec_config_data(struct hci_dev *hdev,
} }
*ven_data = kmalloc(sizeof(__u8), GFP_KERNEL); *ven_data = kmalloc(sizeof(__u8), GFP_KERNEL);
if (!ven_data) { if (!*ven_data) {
err = -ENOMEM; err = -ENOMEM;
goto error; goto error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment