From 49372f2691a006d5a8d424b5a90be23539b06067 Mon Sep 17 00:00:00 2001 From: Rahul Pathak Date: Tue, 13 Sep 2022 15:17:08 +0530 Subject: [PATCH] lib: sbi: Fix sbi_strnlen wrong count decrement count(maxlen) should not be decremented here Fixes: 1901e8a287bc ("platform: Add minimal libc support.") Signed-off-by: Rahul Pathak Reviewed-by: Anup Patel --- lib/sbi/sbi_string.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/sbi/sbi_string.c b/lib/sbi/sbi_string.c index c163f317..9ebea693 100644 --- a/lib/sbi/sbi_string.c +++ b/lib/sbi/sbi_string.c @@ -59,7 +59,6 @@ size_t sbi_strnlen(const char *str, size_t count) while (*str != '\0' && ret < count) { ret++; str++; - count--; } return ret;