Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Autotools generated files
Makefile.in
/aclocal.m4
/autom4te.cache/
/cfg/
/config.log
/config.status
/configure
/install-sh
/m4/
/libtool

# CodeQL
_codeql_detected_source_root

# Build artifacts
*.o
*.lo
*.la
.deps/
.libs/
6 changes: 3 additions & 3 deletions src/ifce/btrMgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -9091,13 +9091,13 @@ btrmgr_DisconnectDeviceTimerCb (
gAuthDisconnDevTimeOutRef = 0; // TODO: Is this really required ? Should we call btrMgr_ClearDisconnDevHoldOffTimer to perform g_source_destroy
// Can we even call a g_source_destroy from the context of the timer Cb associated with the same Id/Ref ?

if (ghBTRMgrDevHdlCurStreaming != aBTRCoreDevId) {
if (ghBTRMgrDevHdlCurStreaming != aBTRCoreDevId) {
if (BTRCore_DisconnectDevice (ghBTRCoreHdl, aBTRCoreDevId, lenBTRCoreDeviceType) != enBTRCoreSuccess) {
BTRMGRLOG_ERROR ("Post Device disconnect Cb timeout Failed!\n");
}
} else {
} else {
BTRMGRLOG_INFO("Not disconnecting device, as device has started streaming\n");
}
}
return FALSE;
}

Expand Down