diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-10-31 00:15:09 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-31 00:15:09 +0000 |
commit | 2de2a361f28b7b7a98c3c29497c8284b82c83843 (patch) | |
tree | 1e8d19089052e39d5d189c970c26c959b6f1d3c4 /pkg/tcpip/stack/nic.go | |
parent | c8b32980f2c8f5aec7b97fa5f06eb81733df93ad (diff) | |
parent | 3246040447c6d0a08cc12c5721480c06f77f5dfe (diff) |
Merge release-20190806.1-350-g3246040 (automated)
Diffstat (limited to 'pkg/tcpip/stack/nic.go')
-rw-r--r-- | pkg/tcpip/stack/nic.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/stack/nic.go b/pkg/tcpip/stack/nic.go index a01a208b8..fe8f83d58 100644 --- a/pkg/tcpip/stack/nic.go +++ b/pkg/tcpip/stack/nic.go @@ -762,7 +762,7 @@ func (n *NIC) DeliverNetworkPacket(linkEP LinkEndpoint, remote, local tcpip.Link } n.mu.RUnlock() for _, ep := range packetEPs { - ep.HandlePacket(n.id, local, protocol, vv, linkHeader) + ep.HandlePacket(n.id, local, protocol, vv.Clone(nil), linkHeader) } if netProto.Number() == header.IPv4ProtocolNumber || netProto.Number() == header.IPv6ProtocolNumber { |