[PATCH] lib: sbi: Fix bug in strncmp function
Dong Du
Dd_nirvana at sjtu.edu.cn
Mon Jul 26 23:08:35 PDT 2021
From: Dong Du <dd_nirvana at sjtu.edu.cn>
strncmp should return 0 when the count is 0.
Fix the issue in sbi_strncmp.
Signed-off-by: Dong Du <ddnirvana1 at gmail.com>
---
lib/sbi/sbi_string.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/sbi/sbi_string.c b/lib/sbi/sbi_string.c
index 7805ba4..f93ed5f 100644
--- a/lib/sbi/sbi_string.c
+++ b/lib/sbi/sbi_string.c
@@ -29,6 +29,9 @@ int sbi_strcmp(const char *a, const char *b)
int sbi_strncmp(const char *a, const char *b, size_t count)
{
+ if (!count)
+ return 0;
+
/* search first diff or end of string */
for (; count > 0 && *a == *b && *a != '\0'; a++, b++, count--)
;
--
2.31.1
More information about the opensbi
mailing list