Merge in SNORT/snort3 from ~DAVMCPHE/snort3:snort_crash_held_packet to master
Squashed commit of the following:
commit
675460c81bb068e75c5f7147f75b3548e67baecf
Author: davis mcpherson <davmcphe@cisco.com>
Date: Wed Jan 14 11:17:17 2026 -0500
stream: skip check for held packet retransmit if current packet is not a wire packet
bool TcpStreamTracker::is_retransmit_of_held_packet(Packet* cp)
{
- if ( !is_holding_packet() )
+ if ( !is_holding_packet() or !cp->ptrs.tcph )
return false;
if ( cp->daq_msg == held_packet->get_daq_msg() )