mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
don't write to freed memory
This commit is contained in:
@@ -133,8 +133,8 @@ isc_lex_destroy(isc_lex_t **lexp) {
|
||||
isc_lex_close(lex);
|
||||
if (lex->data != NULL)
|
||||
isc_mem_put(lex->mctx, lex->data, lex->max_token + 1);
|
||||
isc_mem_put(lex->mctx, lex, sizeof *lex);
|
||||
lex->magic = 0;
|
||||
isc_mem_put(lex->mctx, lex, sizeof *lex);
|
||||
|
||||
*lexp = NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user