Skip to content

Commit

Permalink
Merge pull request #11 from Lastique/patch-1
Browse files Browse the repository at this point in the history
Fix a missing connection unlock
  • Loading branch information
willamowius authored Dec 20, 2019
2 parents 6c3b904 + 3d282ad commit 3960528
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/h323.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1103,8 +1103,10 @@ PBoolean H323Connection::HandleSignalPDU(H323SignalPDU & pdu)
#ifdef H323_H450
// Check for presence of supplementary services
if (pdu.m_h323_uu_pdu.HasOptionalField(H225_H323_UU_PDU::e_h4501SupplementaryService)) {
if (!h450dispatcher->HandlePDU(pdu)) // Process H4501SupplementaryService APDU
if (!h450dispatcher->HandlePDU(pdu)) { // Process H4501SupplementaryService APDU
Unlock();
return FALSE;
}
}
#endif

Expand Down

0 comments on commit 3960528

Please sign in to comment.