aboutsummaryrefslogtreecommitdiffstats
path: root/memends.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--memends.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/memends.c b/memends.c
index f579222..be4b1d4 100644
--- a/memends.c
+++ b/memends.c
@@ -9,9 +9,12 @@ libsimple_memends(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 (s[n] != t[m])
return 0;
+ }
return 1;
}