Skip to content

Commit

Permalink
fix(pipeline): fix stack-addresses not working
Browse files Browse the repository at this point in the history
  • Loading branch information
oshaked1 committed Feb 5, 2025
1 parent a13d497 commit f739414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ebpf/events_pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ func (t *Tracee) getStackAddresses(stackID uint32) []uint64 {
var stackBytes []byte
err := capabilities.GetInstance().EBPF(func() error {
bytes, e := t.StackAddressesMap.GetValue(unsafe.Pointer(&stackID))
if e != nil {
if e == nil {
stackBytes = bytes
}
return e
Expand Down

0 comments on commit f739414

Please sign in to comment.