aboutsummaryrefslogtreecommitdiffstats
path: root/memcaseends.c
diff options
context:
space:
mode:
Diffstat (limited to 'memcaseends.c')
-rw-r--r--memcaseends.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/memcaseends.c b/memcaseends.c
index 0a673f7..8c938c4 100644
--- a/memcaseends.c
+++ b/memcaseends.c
@@ -9,9 +9,12 @@ libsimple_memcaseends(const void *s_, size_t n, const void *t_, size_t m)
const char *s = s_, *t = t_;
if (n < m)
return 0;
- while (n--, m--)
+ while (m) {
+ n--;
+ m--;
if (tolower(s[n]) != tolower(t[m]))
return 0;
+ }
return 1;
}