Skip to content

Commit 4f4c8c4

Browse files
authored
Merge pull request #12637 from armPelionEdge/#12625-BLE-Cardio-Patch
Cordio: fix for issue #12625
2 parents ef2c1c8 + 4ea64cb commit 4f4c8c4

File tree

1 file changed

+1
-1
lines changed
  • features/FEATURE_BLE/targets/TARGET_CORDIO/stack_adaptation

1 file changed

+1
-1
lines changed

features/FEATURE_BLE/targets/TARGET_CORDIO/stack_adaptation/hci_tr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void hciTrSendAclData(void *pContext, uint8_t *pData)
7272
/* pData is not freed as the hciDrvWrite took ownership of the WSF buffer */
7373
#else
7474
/* free buffer */
75-
WsfMsgFree(pData);
75+
hciCoreTxAclComplete((hciCoreConn_t *)pContext, pData);
7676
#endif // CORDIO_ZERO_COPY_HCI
7777
}
7878
}

0 commit comments

Comments
 (0)