Skip to content

Commit

Permalink
[core] Fixed checking the m_GroupOf is not NULL.
Browse files Browse the repository at this point in the history
A follow-up fix for Haivision#2938.
  • Loading branch information
maxsharabayko committed Apr 30, 2024
1 parent 5fd96c3 commit 79828d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtcore/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8653,7 +8653,7 @@ void srt::CUDT::processCtrlAckAck(const CPacket& ctrlpkt, const time_point& tsAr
m_pRcvBuffer->addRcvTsbPdDriftSample(ctrlpkt.getMsgTimeStamp(), tsArrival, rtt);

#if ENABLE_BONDING
if (drift_updated)
if (drift_updated && m_parent->m_GroupOf)
m_parent->m_GroupOf->synchronizeDrift(this);
#endif
}
Expand Down

0 comments on commit 79828d2

Please sign in to comment.