Skip to content

Commit 345b64f

Browse files
LingaoMjhedberg
authored andcommitted
Bluetooth: Mesh: Fixed Provision Random buffer size
Fixed some minor issues, missing a byte for opcode. Fixes: #19767 Signed-off-by: Lingao Meng <[email protected]>
1 parent 3ea1869 commit 345b64f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/mesh/prov.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ static void prov_confirm(const u8_t *data)
983983

984984
static void prov_random(const u8_t *data)
985985
{
986-
PROV_BUF(rnd, 16);
986+
PROV_BUF(rnd, 17);
987987
u8_t conf_verify[16];
988988

989989
BT_DBG("Remote Random: %s", bt_hex(data, 16));

0 commit comments

Comments
 (0)