aboutsummaryrefslogtreecommitdiffstats
path: root/epan/emem.c
AgeCommit message (Expand)AuthorFilesLines
2012-08-09Iterate over the emem_tree_*32_array key data instead of usingGerald Combs1-140/+67
2012-08-09Make emem_tree_*32_array functions non-destructive. The following dissectors...Michael Mann1-9/+111
2012-07-09From Evan Huus:Anders Broman1-4/+0
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
2012-05-04The rest of the fix for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7221Jeff Morriss1-1/+1
2012-05-04Partial fix for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7221Jeff Morriss1-2/+3
2012-04-10Revert r42001Jakub Zawadzki1-35/+5
2012-04-09If scrubbing memory is set, during alloc we can check if memory is still scru...Jakub Zawadzki1-5/+35
2012-03-19Add a new environment variable (WIRESHARK_ABORT_ON_OUT_OF_MEMORY) thatJeff Morriss1-2/+8
2011-09-21Fix ex "modeline" so it works;Bill Meier1-1/+1
2011-05-09Convert SLAB_-s, to sl_-API.Jakub Zawadzki1-9/+12
2011-05-09Initial commit of slab allocator (sl_* API) Jakub Zawadzki1-17/+109
2011-04-22Cleanup emem_verify_pointer()Jakub Zawadzki1-15/+11
2011-04-22Either the buf argument to emem_scrub_memory() is properly aligned or itGuy Harris1-3/+3
2011-04-21Fix ep_check_canary_integrity to use proper variable.Jakub Zawadzki1-2/+2
2011-03-26Introduce ep_strconcat (copied from the glib version)Jeff Morriss1-0/+37
2011-03-26Remove some duplicated string manipulation code.Jeff Morriss1-88/+83
2011-02-25Clean up comments: canaries are also used to pad allocations to an 8-byte bou...Jeff Morriss1-9/+16
2011-02-25Add a comment explaining what the canary between allocations looks like.Jeff Morriss1-0/+10
2011-02-18Fix some dead code and zero division issues found by Clang scan-build.Gerald Combs1-1/+0
2010-12-06Fix bug #5463 (and likely others) so that ep_strbuf_new() no longerStephen Fisher1-1/+1
2010-09-02Introduce 2 new environment variables: WIRESHARK_EP_VERIFY_POINTERS andJeff Morriss1-3/+19
2010-04-08In C, foo() isn't a function with no arguments, foo(void) is.Guy Harris1-1/+1
2010-02-07From Alex Lindberg via bug 4463:Stig Bjørlykke1-0/+29
2010-02-04Reversion of SVN 30488 as suggested in https://bugs.wireshark.org/bugzilla/sh...Anders Broman1-2/+10
2010-01-28Fix various gcc -Wshadow warnings.Bill Meier1-8/+8
2010-01-20From Jakub Zawadzki:Anders Broman1-5/+11
2010-01-20From Jakub Zawadzki:Anders Broman1-8/+4
2010-01-20remove an unusued variableRonnie Sahlberg1-1/+0
2010-01-19From Jakub Zawadzki:Anders Broman1-57/+69
2010-01-19From Jakub Zawadzki:Anders Broman1-9/+6
2010-01-19From Jakub Zawadzki:Anders Broman1-25/+19
2009-11-30From Jakub Zawadzki via bug 4274:Gerald Combs1-1/+1
2009-11-23Guard #include <sys/types.h> with HAVE_SYS_TYPES_H.Stig Bjørlykke1-0/+2
2009-10-23Add a comment about using memcpy for scrubbing.Gerald Combs1-0/+5
2009-10-20Add emem_init() which initializes both the ep_ and se_ allocators; have allJeff Morriss1-22/+32
2009-10-20Don't call xx_init_chunk() in ep_free_all() and se_free_all() if we're notJeff Morriss1-9/+7
2009-10-19From Jakub Zawadzki via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4...Jeff Morriss1-204/+254
2009-10-16Introduce an optional (ep_ and se_) memory scrubber. When activated (exportJeff Morriss1-20/+86
2009-10-11Use G_MEM_ALIGN when we have to determine the amount of padding needed instea...Kovarththanan Rajaratnam1-1/+1
2009-10-11Rename emem_canary => emem_canary_init to make it clear that the function ini...Kovarththanan Rajaratnam1-4/+4
2009-10-11Only check to see if 'free_list' is empty when we've just moved over a chunk ...Kovarththanan Rajaratnam1-3/+3
2009-10-11Tighten scope of some variables in emem_alloc()Kovarththanan Rajaratnam1-4/+3
2009-10-11Change EMEM_PACKET_CHUNK_SIZE to (10 * 1024 * 1024) to make it easier to see ...Kovarththanan Rajaratnam1-1/+1
2009-10-11Use g_strlcpy instead of providing our own string copy implementationKovarththanan Rajaratnam1-10/+2
2009-10-11Use memcpy when we already know the length of the stringKovarththanan Rajaratnam1-8/+3
2009-10-09Print statistics to stderr so we can see (only) them when using tshark.Jeff Morriss1-53/+60
2009-10-09Unify the stats output regardless of whether we're using canaries or not. Fix...Jeff Morriss1-43/+27
2009-10-08Call emem_canary() immediatelyKovarththanan Rajaratnam1-7/+5
2009-10-08From Harald Welte via bug 4106:Kovarththanan Rajaratnam1-1/+5