[PATCH v2] lib: sbi: Fix bug in strncmp function
Dong Du
Dd_nirvana at sjtu.edu.cn
Wed Jul 28 09:15:35 PDT 2021
No need to compare characters when the count turns to 0.
Fix the issue in sbi_strncmp.
Signed-off-by: Dong Du <Dd_nirvana at sjtu.edu.cn>
---
lib/sbi/sbi_string.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/lib/sbi/sbi_string.c b/lib/sbi/sbi_string.c
index 7805ba4..c87bce9 100644
--- a/lib/sbi/sbi_string.c
+++ b/lib/sbi/sbi_string.c
@@ -33,6 +33,10 @@ int sbi_strncmp(const char *a, const char *b, size_t count)
for (; count > 0 && *a == *b && *a != '\0'; a++, b++, count--)
;
+ /* No difference till the end */
+ if (!count)
+ return 0;
+
return *a - *b;
}
--
2.31.1
More information about the opensbi
mailing list