Skip to content

Commit c622d56

Browse files
Harold Seigelslowhog
Harold Seigel
authored andcommittedOct 18, 2022
8286519: Better memory handling
Reviewed-by: coleenp, rhalade
1 parent 48cc9a8 commit c622d56

File tree

1 file changed

+5
-0
lines changed
  • src/hotspot/share/runtime

1 file changed

+5
-0
lines changed
 

‎src/hotspot/share/runtime/os.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -655,6 +655,11 @@ void* os::malloc(size_t size, MEMFLAGS memflags, const NativeCallStack& stack) {
655655

656656
const size_t outer_size = size + MemTracker::overhead_per_malloc();
657657

658+
// Check for overflow.
659+
if (outer_size < size) {
660+
return NULL;
661+
}
662+
658663
ALLOW_C_FUNCTION(::malloc, void* const outer_ptr = ::malloc(outer_size);)
659664
if (outer_ptr == NULL) {
660665
return NULL;

0 commit comments

Comments
 (0)
Please sign in to comment.