]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
string: use __attribute__((nonnull())) in strends()
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 18 Nov 2025 10:04:04 +0000 (11:04 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 25 Nov 2025 10:22:08 +0000 (11:22 +0100)
The arguments of strends() must not be NULL so annotate the function
with the nonnull attribute.

Suggested-by: Kees Cook <kees@kernel.org>
Link: https://lore.kernel.org/r/20251118-strends-follow-up-v1-2-d3f8ef750f59@linaro.org
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
include/linux/string.h

index 69e9256592f87e446d6f0be5034056aa7d0b78b0..0266dbdaa4cde7a388f1c1d5e8755d7f00335e42 100644 (file)
@@ -570,7 +570,8 @@ static inline bool strstarts(const char *str, const char *prefix)
  * Returns:
  * True if @str ends with @suffix. False in all other cases.
  */
-static inline bool strends(const char *str, const char *suffix)
+static inline bool __attribute__((nonnull(1, 2)))
+strends(const char *str, const char *suffix)
 {
        unsigned int str_len = strlen(str), suffix_len = strlen(suffix);