Temporarilly disable ep's use of chunks until the bugs are fixed.

svn path=/trunk/; revision=45444
This commit is contained in:
Evan Huus 2012-10-10 11:17:28 +00:00
parent 6f5bc4ea12
commit fd76b098a3
1 changed files with 2 additions and 1 deletions

View File

@ -307,7 +307,8 @@ ep_init_chunk(emem_pool_t *mem)
mem->used_list=NULL;
mem->trees=NULL; /* not used by this allocator */
mem->debug_use_chunks = (getenv("WIRESHARK_DEBUG_EP_NO_CHUNKS") == NULL);
/* XXX Temporarily disable ep chunks until the bugs are fixed */
mem->debug_use_chunks = FALSE; /*(getenv("WIRESHARK_DEBUG_EP_NO_CHUNKS") == NULL); */
mem->debug_use_canary = mem->debug_use_chunks && (getenv("WIRESHARK_DEBUG_EP_NO_CANARY") == NULL);
mem->debug_verify_pointers = (getenv("WIRESHARK_EP_VERIFY_POINTERS") != NULL);