From 10124c6f1fc1fe2a125f2e2afe204656be42a624 Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 11 Jun 2011 20:39:56 +0000 Subject: [PATCH] * Applied and tested patch by August Klein for bug #19351 git-svn-id: trunk@17721 - --- packages/fcl-xml/src/xmlconf.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fcl-xml/src/xmlconf.pp b/packages/fcl-xml/src/xmlconf.pp index 8516cf5e87..da163ea631 100644 --- a/packages/fcl-xml/src/xmlconf.pp +++ b/packages/fcl-xml/src/xmlconf.pp @@ -294,7 +294,7 @@ begin begin for I := 0 to FPathCount-1 do FElement := DoFindNode(FPathStack[I], FDummy, Flags - [pfHasValue]); - FPathDirty := False; + if Assigned(FElement) then FPathDirty := False; end; Result := DoFindNode(APath, Ident, Flags); end;