index
:
tools/wireshark
Novell_NCP_branch
cherry-pick-112af30d
cherry-pick-78067deb-2
cherry-pick-c6e60da6-2
ethereal
lts-1.12.1
lts-1.2.11
lts-1.8.2
master
master-1.0
master-1.10
master-1.12
master-1.2
master-1.4
master-1.6
master-1.8
master-2.0
master-2.2
master-2.4
master-2.6
master-3.0
master-3.2
old-trunk-1.0
release-3.4
release-3.6
win32-native
WIP Patches to add a samsung-ipc dissector to Wireshark
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
epan
/
emem.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Convert SLAB_-s, to sl_-API.
Jakub Zawadzki
2011-05-09
1
-9
/
+12
*
Initial commit of slab allocator (sl_* API)
Jakub Zawadzki
2011-05-09
1
-17
/
+109
*
Cleanup emem_verify_pointer()
Jakub Zawadzki
2011-04-22
1
-15
/
+11
*
Either the buf argument to emem_scrub_memory() is properly aligned or it
Guy Harris
2011-04-22
1
-3
/
+3
*
Fix ep_check_canary_integrity to use proper variable.
Jakub Zawadzki
2011-04-21
1
-2
/
+2
*
Introduce ep_strconcat (copied from the glib version)
Jeff Morriss
2011-03-26
1
-0
/
+37
*
Remove some duplicated string manipulation code.
Jeff Morriss
2011-03-26
1
-88
/
+83
*
Clean up comments: canaries are also used to pad allocations to an 8-byte bou...
Jeff Morriss
2011-02-25
1
-9
/
+16
*
Add a comment explaining what the canary between allocations looks like.
Jeff Morriss
2011-02-25
1
-0
/
+10
*
Fix some dead code and zero division issues found by Clang scan-build.
Gerald Combs
2011-02-18
1
-1
/
+0
*
Fix bug #5463 (and likely others) so that ep_strbuf_new() no longer
Stephen Fisher
2010-12-06
1
-1
/
+1
*
Introduce 2 new environment variables: WIRESHARK_EP_VERIFY_POINTERS and
Jeff Morriss
2010-09-02
1
-3
/
+19
*
In C, foo() isn't a function with no arguments, foo(void) is.
Guy Harris
2010-04-08
1
-1
/
+1
*
From Alex Lindberg via bug 4463:
Stig Bjørlykke
2010-02-07
1
-0
/
+29
*
Reversion of SVN 30488 as suggested in https://bugs.wireshark.org/bugzilla/sh...
Anders Broman
2010-02-04
1
-2
/
+10
*
Fix various gcc -Wshadow warnings.
Bill Meier
2010-01-28
1
-8
/
+8
*
From Jakub Zawadzki:
Anders Broman
2010-01-20
1
-5
/
+11
*
From Jakub Zawadzki:
Anders Broman
2010-01-20
1
-8
/
+4
*
remove an unusued variable
Ronnie Sahlberg
2010-01-20
1
-1
/
+0
*
From Jakub Zawadzki:
Anders Broman
2010-01-19
1
-57
/
+69
*
From Jakub Zawadzki:
Anders Broman
2010-01-19
1
-9
/
+6
*
From Jakub Zawadzki:
Anders Broman
2010-01-19
1
-25
/
+19
*
From Jakub Zawadzki via bug 4274:
Gerald Combs
2009-11-30
1
-1
/
+1
*
Guard #include <sys/types.h> with HAVE_SYS_TYPES_H.
Stig Bjørlykke
2009-11-23
1
-0
/
+2
*
Add a comment about using memcpy for scrubbing.
Gerald Combs
2009-10-23
1
-0
/
+5
*
Add emem_init() which initializes both the ep_ and se_ allocators; have all
Jeff Morriss
2009-10-20
1
-22
/
+32
*
Don't call xx_init_chunk() in ep_free_all() and se_free_all() if we're not
Jeff Morriss
2009-10-20
1
-9
/
+7
*
From Jakub Zawadzki via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4...
Jeff Morriss
2009-10-19
1
-204
/
+254
*
Introduce an optional (ep_ and se_) memory scrubber. When activated (export
Jeff Morriss
2009-10-16
1
-20
/
+86
*
Use G_MEM_ALIGN when we have to determine the amount of padding needed instea...
Kovarththanan Rajaratnam
2009-10-11
1
-1
/
+1
*
Rename emem_canary => emem_canary_init to make it clear that the function ini...
Kovarththanan Rajaratnam
2009-10-11
1
-4
/
+4
*
Only check to see if 'free_list' is empty when we've just moved over a chunk ...
Kovarththanan Rajaratnam
2009-10-11
1
-3
/
+3
*
Tighten scope of some variables in emem_alloc()
Kovarththanan Rajaratnam
2009-10-11
1
-4
/
+3
*
Change EMEM_PACKET_CHUNK_SIZE to (10 * 1024 * 1024) to make it easier to see ...
Kovarththanan Rajaratnam
2009-10-11
1
-1
/
+1
*
Use g_strlcpy instead of providing our own string copy implementation
Kovarththanan Rajaratnam
2009-10-11
1
-10
/
+2
*
Use memcpy when we already know the length of the string
Kovarththanan Rajaratnam
2009-10-11
1
-8
/
+3
*
Print statistics to stderr so we can see (only) them when using tshark.
Jeff Morriss
2009-10-09
1
-53
/
+60
*
Unify the stats output regardless of whether we're using canaries or not. Fix...
Jeff Morriss
2009-10-09
1
-43
/
+27
*
Call emem_canary() immediately
Kovarththanan Rajaratnam
2009-10-08
1
-7
/
+5
*
From Harald Welte via bug 4106:
Kovarththanan Rajaratnam
2009-10-08
1
-1
/
+5
*
Remove debug g_warning()
Kovarththanan Rajaratnam
2009-10-08
1
-4
/
+3
*
Dont use canaries for SE allocated memory as a default the owerhead
Anders Broman
2009-10-08
1
-9
/
+98
*
Add some SE allocation statistics (if SHOW_MEM_STATS is defined).
Jeff Morriss
2009-10-06
1
-0
/
+135
*
Increase EMEM_ALLOCS_PER_CHUNK to avoid memory waist.
Anders Broman
2009-10-06
1
-1
/
+1
*
Use g_free() (should have been part of r30342)
Kovarththanan Rajaratnam
2009-10-05
1
-2
/
+2
*
Use g_malloc()
Kovarththanan Rajaratnam
2009-10-05
1
-4
/
+4
*
Ensure we don't dereference a null pointer.
Stig Bjørlykke
2009-09-29
1
-1
/
+5
*
Make sure that we also traverse the free_list while looking for valid pointers
Kovarththanan Rajaratnam
2009-09-24
1
-8
/
+17
*
Add unsigned int type cast
Kovarththanan Rajaratnam
2009-09-21
1
-1
/
+1
*
Make sure that we track the amount allocated when we're doling out memory fro...
Kovarththanan Rajaratnam
2009-09-21
1
-0
/
+4
[next]