Evan Huus
changed
bug 8287
Comment # 9
on bug 8287
from Evan Huus
(In reply to comment #6)
> Wireshark doesn't currently offer a double linked list with the seasonal
> memory allocator.
Adding a doubly-linked list to wmem (the new replacement for seasonal/ephemeral
memory) would be pretty trivial. I can whip something up if that would be
useful.
Also note that one of the things wmem is going to provide is a proper
(relatively efficient) realloc so that you don't have to fake it with
alloc+memcpy like you've done here, however this is more work and isn't yet
done. I've been unfortunately short on time to work on it recently.
Regardless, replacing your emem calls with equivalent wmem calls will make it
easier to adjust in the future when I have time to finish wmem.
Evan
P.S. see doc/README.wmem for more information
You are receiving this mail because:
- You are watching all bug changes.