We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 194e1b1 commit 39cf241Copy full SHA for 39cf241
fact-ebpf/src/bpf/file.h
@@ -79,9 +79,7 @@ __always_inline static bool is_monitored(struct bound_path_t* path) {
79
}
80
81
__always_inline static int get_owner_uid_gid(struct dentry* dentry, unsigned int* uid, unsigned int* gid) {
82
- struct inode* inode;
83
-
84
- inode = BPF_CORE_READ(dentry, d_inode);
+ struct inode* inode = BPF_CORE_READ(dentry, d_inode);
85
if (inode == NULL) {
86
return !0;
87
0 commit comments