diff options
| author | Dong Du <[email protected]> | 2021-07-29 00:15:35 +0800 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2021-08-07 15:40:40 +0530 |
| commit | d244f3dbd6cfd241dc1db611c0325daedfcab9c6 (patch) | |
| tree | 2efab53955b3a7c3d119d051c58b43bc5b3aca5d /lib | |
| parent | e928472e67f86d73c00537dfa6d5cef5d646426d (diff) | |
lib: sbi: Fix bug in strncmp function when count is 0
No need to compare characters when the count turns to 0.
Fix the issue in sbi_strncmp.
Signed-off-by: Dong Du <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sbi/sbi_string.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/sbi/sbi_string.c b/lib/sbi/sbi_string.c index 7805ba4a..c87bce9c 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; } |
