mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-05 05:25:03 +00:00
Merge pull request #8 from zeux/fix-overflow
Fix buffer overflow in string_equal
This commit is contained in:
commit
a92b6f4ad1
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue