We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4133188 commit b0a34e3Copy full SHA for b0a34e3
visualvm/libs.profiler/lib.profiler.heap/src/org/graalvm/visualvm/lib/jfluid/heap/HprofHeap.java
@@ -1317,6 +1317,9 @@ private void fillHeapTagBounds() {
1317
TagBounds instanceDumpBounds = heapTagBounds[INSTANCE_DUMP];
1318
TagBounds objArrayDumpBounds = heapTagBounds[OBJECT_ARRAY_DUMP];
1319
TagBounds primArrayDumpBounds = heapTagBounds[PRIMITIVE_ARRAY_DUMP];
1320
+ if (instanceDumpBounds == null) {
1321
+ instanceDumpBounds = new TagBounds(-1, heapDumpSegment.endOffset, heapDumpSegment.endOffset);
1322
+ }
1323
allInstanceDumpBounds = instanceDumpBounds.union(objArrayDumpBounds);
1324
allInstanceDumpBounds = allInstanceDumpBounds.union(primArrayDumpBounds);
1325
HeapProgress.progressFinish();
0 commit comments