Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'audit-pr-20250130' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit

Pull audit fix from Paul Moore:
"A minor audit patch to fix an unitialized variable problem"

* tag 'audit-pr-20250130' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit:
audit: Initialize lsmctx to avoid memory allocation error

+1 -1
+1 -1
kernel/audit.c
··· 1221 1221 struct audit_buffer *ab; 1222 1222 u16 msg_type = nlh->nlmsg_type; 1223 1223 struct audit_sig_info *sig_data; 1224 - struct lsm_context lsmctx; 1224 + struct lsm_context lsmctx = { NULL, 0, 0 }; 1225 1225 1226 1226 err = audit_netlink_ok(skb, msg_type); 1227 1227 if (err)