Skip to content
Snippets Groups Projects
Commit 8e79afe6 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "[le audio] Fix crash when terminating big during streaming" into main

parents e99a17ac 811abfd8
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,8 @@ void IsoManager::CreateBig(uint8_t big_id,
}
void IsoManager::TerminateBig(uint8_t big_id, uint8_t reason) {
pimpl_->iso_impl_->terminate_big(big_id, reason);
if (pimpl_->IsRunning())
pimpl_->iso_impl_->terminate_big(big_id, reason);
}
void IsoManager::HandleIsoData(void* p_msg) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment