mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 03:54:33 +02:00
8001584: NPG: Incorrect assertion in BinaryTreeDictionary::get_chunk()
Reviewed-by: johnc, tamao
This commit is contained in:
parent
37bddeb62b
commit
0c42ca44f3
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ class BinaryTreeDictionary: public FreeBlockDictionary<Chunk_t> {
|
||||||
assert(res == NULL || res->is_free(),
|
assert(res == NULL || res->is_free(),
|
||||||
"Should be returning a free chunk");
|
"Should be returning a free chunk");
|
||||||
assert(dither != FreeBlockDictionary<Chunk_t>::exactly ||
|
assert(dither != FreeBlockDictionary<Chunk_t>::exactly ||
|
||||||
res->size() == size, "Not correct size");
|
res == NULL || res->size() == size, "Not correct size");
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue