Comment # 30
on bug 12656
from Guy Harris
For what it's worth, addr_resolv_cleanup(), called from epan_cleanup(), called
before TShark - and other programs - exit, calls eth_name_lookup_cleanup(),
which does
wmem_free(NULL, manuf_hashtable);
manuf_hashtable = NULL;
but doesn't free anything in the hash table in question, so that might render
the manufacturer-OID-to-name table entries "definitely unreachable".
Should we allocate those entries in epan scope, so they're freed-in-bulk by
epan_cleanup()?
You are receiving this mail because:
- You are watching all bug changes.