View | Details | Raw Unified | Return to bug 28317
Collapse All | Expand All

(-)java/src/org/apache/xindice/xml/dom/DocumentImpl.java (-1 / +1 lines)
Lines 349-353 Link Here
349
                }
349
                }
350
                n = n.getParentNode();
350
                n = n.getParentNode();
351
                if (n.getNodeType() == DOCUMENT_NODE || n.getNodeType() == DOCUMENT_FRAGMENT_NODE) {
351
                if (n == null || n.getNodeType() == DOCUMENT_NODE || n.getNodeType() == DOCUMENT_FRAGMENT_NODE) {
352
                    n = null;
352
                    n = null;
353
                }
353
                }

Return to bug 28317