Merge pull request #8 from zeux/fix-overflow

Fix buffer overflow in string_equal
This commit is contained in:
Richard Knight 2019-07-27 08:43:33 +01:00 committed by GitHub
commit a92b6f4ad1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -349,10 +349,10 @@ char* string_concat(const char* a, const char* s, const char* e)
static
int string_equal(const char* a, const char* s, const char* e)
{
while (*a++ == *s++ && s != e)
;
size_t an = strlen(a);
size_t sn = (size_t)(e - s);
return (*a == '\0' && s == e);
return an == sn && memcmp(a, s, an) == 0;
}