Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFMemoryBlock.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFMemoryBlock.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFMemoryBlock.java
index 33eb88b1e..a0a354624 100644
--- a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFMemoryBlock.java
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFMemoryBlock.java
@@ -866,6 +866,7 @@ class TCFMemoryBlock extends PlatformObject implements IMemoryBlockExtension, IM
IMemoryRenderingSite memory_view = (IMemoryRenderingSite)part;
for (String pane_id : pane_ids) {
IMemoryRenderingContainer container = memory_view.getContainer(pane_id);
+ if (container == null) continue;
IMemoryRendering[] renderings = container.getRenderings();
for (IMemoryRendering rendering : renderings) {
Element xml_block = mb_to_xml.get(rendering.getMemoryBlock());

Back to the top