2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-22 10:07:12 +00:00

binutils: Fix missing include limits.h

For NAME_MAX

Fixes 322a98c8 ("Fix incorrect strnlen length in aa_load.c load_policy_dir")
This commit is contained in:
fossdd 2025-05-03 16:48:24 +02:00
parent e510dfd0e7
commit 02b7e41ef3
No known key found for this signature in database
GPG Key ID: BB8C8A81C6452A88

View File

@ -17,6 +17,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <string.h> #include <string.h>
#include <dirent.h> #include <dirent.h>
#include <limits.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>