Skip to content

Commit 6a81d52

Browse files
afshin-zafariDavid Holmes
authored and
David Holmes
committedJan 17, 2023
8299213: Bad cast in GrowableArrayWithAllocator<>::grow
Reviewed-by: kbarrett, jsjolen, jwaters
1 parent 8365c67 commit 6a81d52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/utilities/growableArray.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ void GrowableArrayWithAllocator<E, Derived>::expand_to(int new_capacity) {
514514
template <typename E, typename Derived>
515515
void GrowableArrayWithAllocator<E, Derived>::grow(int j) {
516516
// grow the array by increasing _capacity to the first power of two larger than the size we need
517-
expand_to(next_power_of_2((uint32_t)j));
517+
expand_to(next_power_of_2(j));
518518
}
519519

520520
template <typename E, typename Derived>

0 commit comments

Comments
 (0)
Please sign in to comment.