fix strncmp in tokencap

This commit is contained in:
Andrea Fioraldi 2020-02-13 20:07:48 +01:00
parent ed5a3e92ff
commit 12df4c4af7

View File

@ -330,8 +330,8 @@ int strncmp(const char* str1, const char* str2, size_t len) {
unsigned char c1 = *str1, c2 = *str2;
if (!c1) return 0;
if (c1 != c2) return (c1 > c2) ? 1 : -1;
if (!c1) return 0;
str1++;
str2++;