linux/security
Al Viro 89868773fe tomoyo: use vsnprintf() properly
Idiomatic way to find how much space sprintf output would take is
	len = snprintf(NULL, 0, ...) + 1;
Once upon a time there'd been libc implementations that blew chunks
on that and somebody had come up with the following "cute" trick:
	len = snprintf((char *) &len, 1, ...) + 1;
for doing the same.  However, that's unidiomatic, harder to follow
*and* any such libc implementation would violate both C99 and POSIX
(since 2001).
	IOW, this kludge is best buried along with such libc implementations,
nevermind getting cargo-culted into newer code.  Our vsnprintf() does not
suffer that braindamage, TYVM.

Acked-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2022-08-21 11:50:42 -04:00
..
apparmor
bpf
integrity integrity-v6.0 2022-08-02 15:21:18 -07:00
keys
landlock
loadpin
lockdown
safesetid
selinux selinux/stable-6.0 PR 20220801 2022-08-02 14:51:47 -07:00
smack
tomoyo tomoyo: use vsnprintf() properly 2022-08-21 11:50:42 -04:00
yama
commoncap.c
device_cgroup.c
inode.c
Kconfig
Kconfig.hardening
lsm_audit.c
Makefile
min_addr.c
security.c SafeSetID changes for Linux 6.0 2022-08-02 15:12:13 -07:00