# HG changeset patch # User redestad # Date 1499952800 -7200 # Node ID d40e6ce222091ce74688712ba1b4b9d44c7dba7d # Parent 2a4cca3194431822adebdee1125a46ddd1f931b4 8184337: CodeCache::get_code_cache_containing wrongly asserts that start can not be NULL Reviewed-by: thartmann, gtriantafill, rehn diff -r 2a4cca319443 -r d40e6ce22209 hotspot/src/share/vm/code/codeCache.cpp --- a/hotspot/src/share/vm/code/codeCache.cpp Thu Jul 13 01:28:24 2017 +0000 +++ b/hotspot/src/share/vm/code/codeCache.cpp Thu Jul 13 15:33:20 2017 +0200 @@ -423,7 +423,6 @@ } CodeHeap* CodeCache::get_code_heap_containing(void* start) { - assert(start != NULL, "start is null"); FOR_ALL_HEAPS(heap) { if ((*heap)->contains(start)) { return *heap;