Merge pull request #1243 from WageCrusader/development

removes a use after freed in consoleInternal
This commit is contained in:
Brian Roberts 2024-03-24 22:53:44 -05:00 committed by GitHub
commit d4a4e7f741
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -362,7 +362,6 @@ void Dictionary::remove(Dictionary::Entry *ent)
*walk = (ent->nextEntry);
destructInPlace(ent);
hashTable->mChunker.free(ent);
hashTable->count--;