summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/socket
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/sentry/socket')
-rw-r--r--pkg/sentry/socket/netfilter/netfilter_abi_autogen_unsafe.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/sentry/socket/netfilter/netfilter_abi_autogen_unsafe.go b/pkg/sentry/socket/netfilter/netfilter_abi_autogen_unsafe.go
index 65e39de64..62df05937 100644
--- a/pkg/sentry/socket/netfilter/netfilter_abi_autogen_unsafe.go
+++ b/pkg/sentry/socket/netfilter/netfilter_abi_autogen_unsafe.go
@@ -27,15 +27,15 @@ func (n *nfNATTarget) SizeBytes() int {
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (n *nfNATTarget) MarshalBytes(dst []byte) []byte {
- dst = n.Target.MarshalBytes(dst)
- dst = n.Range.MarshalBytes(dst)
+ dst = n.Target.MarshalUnsafe(dst)
+ dst = n.Range.MarshalUnsafe(dst)
return dst
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (n *nfNATTarget) UnmarshalBytes(src []byte) []byte {
- src = n.Target.UnmarshalBytes(src)
- src = n.Range.UnmarshalBytes(src)
+ src = n.Target.UnmarshalUnsafe(src)
+ src = n.Range.UnmarshalUnsafe(src)
return src
}