Fix dropped error (#240)

Signed-off-by: Lars Lehtonen <lars.lehtonen@gmail.com>
This commit is contained in:
Lars Lehtonen 2023-09-15 23:51:22 -07:00 committed by GitHub
parent d27cc52f15
commit 6a61933ab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

4
set.go
View File

@ -567,7 +567,9 @@ func (cc *Conn) AddSet(s *Set, vals []SetElement) error {
descSize, err := netlink.MarshalAttributes([]netlink.Attribute{ descSize, err := netlink.MarshalAttributes([]netlink.Attribute{
{Type: unix.NFTA_SET_DESC_SIZE, Data: valData}, {Type: unix.NFTA_SET_DESC_SIZE, Data: valData},
}) })
if err != nil {
return fmt.Errorf("fail to marshal base type size description: %w", err)
}
concatDefinition = append(concatDefinition, descSize...) concatDefinition = append(concatDefinition, descSize...)
} }
// Marshal all base type descriptions into concatenation size description // Marshal all base type descriptions into concatenation size description