Fixing UB in hsearch

Referenced by issue: https://github.com/tinyproxy/tinyproxy/issues/470
This commit is contained in:
Tom 2023-01-16 11:27:54 +01:00 committed by GitHub
parent 3764b85514
commit 89c2d22076
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,13 @@ static int resize(struct htab *htab, size_t nel)
size_t i, j;
struct elem *e, *newe;
struct elem *oldtab = htab->elems;
struct elem *oldend = htab->elems + htab->mask + 1;
size_t offset = 1;
if (htab->elems)
offset += htab->elems;
if (htab->mask)
offset += htab->mask;
struct elem *oldend = offset;
if (nel > MAXSIZE)
nel = MAXSIZE;