diff options
| author | Sean Wang <[email protected]> | 2022-03-22 23:30:40 +0000 |
|---|---|---|
| committer | Marcel Holtmann <[email protected]> | 2022-05-13 11:05:48 +0000 |
| commit | 789f6b8ac3b15bca09b69d5699cad0bf6e2103aa (patch) | |
| tree | 948d7ba136ea566fa88d71050d106ba90bc51200 | |
| parent | Bluetooth: btbcm: Support per-board firmware variants (diff) | |
| download | kernel-789f6b8ac3b15bca09b69d5699cad0bf6e2103aa.tar.gz kernel-789f6b8ac3b15bca09b69d5699cad0bf6e2103aa.zip | |
Bluetooth: mt7921s: Fix the incorrect pointer check
Fix the incorrect pointer check on ven_data.
Fixes: f41b91fa1783 ("Bluetooth: mt7921s: Add .btmtk_get_codec_config_data")
Co-developed-by: Yake Yang <[email protected]>
Signed-off-by: Yake Yang <[email protected]>
Signed-off-by: Sean Wang <[email protected]>
Signed-off-by: Marcel Holtmann <[email protected]>
| -rw-r--r-- | drivers/bluetooth/btmtksdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/btmtksdio.c b/drivers/bluetooth/btmtksdio.c index f3dc5881fff7..b6d77e04240c 100644 --- a/drivers/bluetooth/btmtksdio.c +++ b/drivers/bluetooth/btmtksdio.c @@ -961,7 +961,7 @@ static int btmtksdio_get_codec_config_data(struct hci_dev *hdev, } *ven_data = kmalloc(sizeof(__u8), GFP_KERNEL); - if (!ven_data) { + if (!*ven_data) { err = -ENOMEM; goto error; } |
