src/share/vm/utilities/hashtable.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 80060074 Cdiff src/share/vm/utilities/hashtable.cpp

src/share/vm/utilities/hashtable.cpp

Print this page

        

*** 147,157 **** if (NULL != _buckets) { // Don't delete the buckets in the shared space. They aren't // allocated by os::malloc if (!UseSharedSpaces || !FileMapInfo::current_info()->is_in_shared_space(_buckets)) { ! FREE_C_HEAP_ARRAY(HashtableBucket, _buckets, F); } _buckets = NULL; } } --- 147,157 ---- if (NULL != _buckets) { // Don't delete the buckets in the shared space. They aren't // allocated by os::malloc if (!UseSharedSpaces || !FileMapInfo::current_info()->is_in_shared_space(_buckets)) { ! FREE_C_HEAP_ARRAY(HashtableBucket, _buckets); } _buckets = NULL; } }
src/share/vm/utilities/hashtable.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File