summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/node.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/node.cxx')
-rw-r--r--unoxml/source/dom/node.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx
index 40fae80affdf..ab80060aa12f 100644
--- a/unoxml/source/dom/node.cxx
+++ b/unoxml/source/dom/node.cxx
@@ -913,6 +913,7 @@ namespace DOM
if (pNew->next != NULL)
pNew->next->prev = pNew;
pNew->parent = pOld->parent;
+ // coverity[var_deref_op] pNew->parent cannot be NULL here
if(pNew->parent->children == pOld)
pNew->parent->children = pNew;
if(pNew->parent->last == pOld)