diff options
| author | Wang Qing <[email protected]> | 2022-02-15 02:01:56 +0000 |
|---|---|---|
| committer | Marcel Holtmann <[email protected]> | 2022-02-24 20:05:21 +0000 |
| commit | 2e8ecb4bbc13d4752d64a9f8f5512d59125cab25 (patch) | |
| tree | 5fa9e9dc25e26db5a57d2ed994ab27c424ddda3e | |
| parent | Bluetooth: Fix bt_skb_sendmmsg not allocating partial chunks (diff) | |
| download | kernel-2e8ecb4bbc13d4752d64a9f8f5512d59125cab25.tar.gz kernel-2e8ecb4bbc13d4752d64a9f8f5512d59125cab25.zip | |
Bluetooth: assign len after null check
len should be assigned after a null check
Signed-off-by: Wang Qing <[email protected]>
Signed-off-by: Marcel Holtmann <[email protected]>
| -rw-r--r-- | net/bluetooth/mgmt_util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt_util.c b/net/bluetooth/mgmt_util.c index edee60bbc7b4..37eef2ce55ae 100644 --- a/net/bluetooth/mgmt_util.c +++ b/net/bluetooth/mgmt_util.c @@ -77,11 +77,12 @@ int mgmt_send_event_skb(unsigned short channel, struct sk_buff *skb, int flag, { struct hci_dev *hdev; struct mgmt_hdr *hdr; - int len = skb->len; + int len; if (!skb) return -EINVAL; + len = skb->len; hdev = bt_cb(skb)->mgmt.hdev; /* Time stamp */ |
