Skip to content

Commit 6149b2f

Browse files
committed
[com] remove deadlock check for now as it will lead to false positives
1 parent 569b9ba commit 6149b2f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Source/com/IUnknown.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,6 @@ namespace ProxyStub {
110110

111111
if (channel.IsValid() == true) {
112112

113-
if (channel->InProgress() == true) {
114-
ASSERT(false && "IPC in progress detected on this channel. Possible deadlock!");
115-
SYSLOG(Logging::Error, (_T("IPC in progress detected on this channel for Interface [0x%X], Method ID [0x%X]. Possible deadlock!"), message->Parameters().InterfaceId(), message->Parameters().MethodId()));
116-
}
117-
118113
result = channel->Invoke(message, waitTime);
119114
if (result != Core::ERROR_NONE) {
120115

0 commit comments

Comments
 (0)