This is an automated email from the ASF dual-hosted git repository.

naraj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit 195313a8d9082f2a34a09002cc823005a9d0a9fc
Author: Krzysztof Kopyściński <krzysztof.kopyscin...@codecoup.pl>
AuthorDate: Fri Apr 30 13:24:36 2021 +0200

    mesh: Fix incorrect pointer type in cdb.c
---
 nimble/host/mesh/src/provisioner.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nimble/host/mesh/src/provisioner.c 
b/nimble/host/mesh/src/provisioner.c
index 265dbf2..c51a769 100644
--- a/nimble/host/mesh/src/provisioner.c
+++ b/nimble/host/mesh/src/provisioner.c
@@ -503,7 +503,7 @@ static void send_prov_data(void)
 #endif
        bt_mesh_prov_buf_init(pdu, PROV_DATA);
 #if MYNEWT_VAL(BLE_MESH_CDB)
-       net_buf_simple_add_mem(&pdu, sub->keys[SUBNET_KEY_TX_IDX(sub)].net_key, 
16);
+       net_buf_simple_add_mem(pdu, sub->keys[SUBNET_KEY_TX_IDX(sub)].net_key, 
16);
        net_buf_simple_add_be16(pdu, prov_device.node->net_idx);
        net_buf_simple_add_u8(pdu, bt_mesh_cdb_subnet_flags(sub));
        net_buf_simple_add_be32(pdu, bt_mesh_cdb.iv_index);

Reply via email to