You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2017/02/13 19:31:45 UTC

[10/10] incubator-mynewt-core git commit: BLE Host - Update for CoC field name change.

BLE Host - Update for CoC field name change.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/8b510e97
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/8b510e97
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/8b510e97

Branch: refs/heads/develop
Commit: 8b510e973cec21c776fdd2ab4801793a2339dd09
Parents: 0727c55
Author: Christopher Collins <cc...@apache.org>
Authored: Mon Feb 13 11:25:04 2017 -0800
Committer: Christopher Collins <cc...@apache.org>
Committed: Mon Feb 13 11:25:55 2017 -0800

----------------------------------------------------------------------
 net/nimble/host/src/ble_l2cap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/8b510e97/net/nimble/host/src/ble_l2cap.c
----------------------------------------------------------------------
diff --git a/net/nimble/host/src/ble_l2cap.c b/net/nimble/host/src/ble_l2cap.c
index bab2365..2fb48b6 100644
--- a/net/nimble/host/src/ble_l2cap.c
+++ b/net/nimble/host/src/ble_l2cap.c
@@ -77,7 +77,7 @@ ble_l2cap_chan_free(struct ble_l2cap_chan *chan)
         return;
     }
 
-    os_mbuf_free_chain(chan->blc_rx_buf);
+    os_mbuf_free_chain(chan->rx_buf);
 
     rc = os_memblock_put(&ble_l2cap_chan_pool, chan);
     BLE_HS_DBG_ASSERT_EVAL(rc == 0);