Skip to content

Commit

Permalink
Fix cgroup context unmarshalling
Browse files Browse the repository at this point in the history
  • Loading branch information
lebauce committed Dec 12, 2024
1 parent 1823d5e commit 110c8a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/security/secl/model/unmarshallers_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ func (e *CgroupTracingEvent) UnmarshalBinary(data []byte) (int, error) {
}
cursor := read

read, err = UnmarshalBinary(data, &e.CGroupContext)
read, err = UnmarshalBinary(data[cursor:], &e.CGroupContext)
if err != nil {
return 0, err
}
Expand Down

0 comments on commit 110c8a7

Please sign in to comment.