summaryrefslogtreecommitdiff
path: root/src/gen_bpf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gen_bpf.c')
-rw-r--r--src/gen_bpf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gen_bpf.c b/src/gen_bpf.c
index 02ea3f6..f7b6eca 100644
--- a/src/gen_bpf.c
+++ b/src/gen_bpf.c
@@ -1374,12 +1374,12 @@ static int _gen_bpf_init_bintree(uint64_t **bintree_hashes,
((*bintree_levels) - 1)) - syscall_cnt;
*bintree_hashes = zmalloc(sizeof(uint64_t) *
(*bintree_levels));
- if (bintree_hashes == NULL)
+ if (*bintree_hashes == NULL)
return -ENOMEM;
*bintree_syscalls = zmalloc(sizeof(unsigned int) *
(*bintree_levels));
- if (bintree_syscalls == NULL)
+ if (*bintree_syscalls == NULL)
return -ENOMEM;
for (i = 0; i < *bintree_levels; i++) {