Merge pull request #12637 from armPelionEdge/#12625-BLE-Cardio-Patch

Cordio: fix for issue #12625
pull/12672/head
Martin Kojtal 2020-03-23 14:47:52 +01:00 committed by GitHub
commit 4f4c8c48e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ void hciTrSendAclData(void *pContext, uint8_t *pData)
/* pData is not freed as the hciDrvWrite took ownership of the WSF buffer */
#else
/* free buffer */
WsfMsgFree(pData);
hciCoreTxAclComplete((hciCoreConn_t *)pContext, pData);
#endif // CORDIO_ZERO_COPY_HCI
}
}