check for tunnel config

This commit is contained in:
Jeff Becker 2018-02-26 09:53:12 -05:00
parent 7b4fc19fca
commit 9416d29322
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -672,7 +672,7 @@ namespace tunnel
{
auto pool = tunnel->GetTunnelPool ();
// let it die if the tunnel pool has been reconfigured and this is old
if (pool && tunnel->GetTunnelConfig()->GetNumHops() == pool->GetNumOutboundHops())
if (pool && tunnel->GetTunnelConfig() && tunnel->GetTunnelConfig()->GetNumHops() == pool->GetNumOutboundHops())
{
tunnel->SetIsRecreated ();
pool->RecreateOutboundTunnel (tunnel);
@ -726,7 +726,7 @@ namespace tunnel
{
auto pool = tunnel->GetTunnelPool ();
// let it die if the tunnel pool was reconfigured and has different number of hops
if (pool && tunnel->GetTunnelConfig()->GetNumHops() == pool->GetNumInboundHops())
if (pool && tunnel->GetTunnelConfig() && tunnel->GetTunnelConfig()->GetNumHops() == pool->GetNumInboundHops())
{
tunnel->SetIsRecreated ();
pool->RecreateInboundTunnel (tunnel);