8337679: Memset warning in src/hotspot/share/adlc/adlArena.cpp
Reviewed-by: stefank, thartmann, jwaters
This commit is contained in:
parent
f554c3ffce
commit
a7bfced605
@ -63,8 +63,6 @@ void AdlChunk::chop() {
|
||||
AdlChunk *k = this;
|
||||
while( k ) {
|
||||
AdlChunk *tmp = k->_next;
|
||||
// clear out this chunk (to detect allocation bugs)
|
||||
memset(k, 0xBE, k->_len);
|
||||
free(k); // Free chunk (was malloc'd)
|
||||
k = tmp;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user