From: Waldemar Rymarkiewicz Date: Wed, 1 Jun 2011 15:28:47 +0000 (+0200) Subject: Bluetooth: Remove a magic number X-Git-Tag: firefly_0821_release~7613^2~520 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6fbf3ee003973295e7dfa02628e74d902b1186f3;p=firefly-linux-kernel-4.4.55.git Bluetooth: Remove a magic number Signed-off-by: Waldemar Rymarkiewicz Signed-off-by: Gustavo F. Padovan --- diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 763c9a88a217..4d4dcbbeddea 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -1143,7 +1143,7 @@ static int pin_code_reply(struct sock *sk, u16 index, unsigned char *data, bacpy(&reply.bdaddr, &cp->bdaddr); reply.pin_len = cp->pin_len; - memcpy(reply.pin_code, cp->pin_code, 16); + memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code)); err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply); if (err < 0)