summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-10 12:31:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-10 12:31:22 +0000
commit5bf2b49ef7f0534138cc2303b8fea688698048c4 (patch)
treebfc127c7d6aa2d1b5f5ea594ecbd3b8b952fd18b /framework
parentd46d063f7ecf87af2c3bb7885e3cacf322e004c6 (diff)
coverity#1169812 condition appears the wrong way around
Change-Id: I97960a1491a247ef9db9536f904e4203e0903abd
Diffstat (limited to 'framework')
-rw-r--r--framework/source/services/substitutepathvars.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/services/substitutepathvars.cxx b/framework/source/services/substitutepathvars.cxx
index d651238ad293..8daf83df5dec 100644
--- a/framework/source/services/substitutepathvars.cxx
+++ b/framework/source/services/substitutepathvars.cxx
@@ -1017,7 +1017,7 @@ throw ( NoSuchElementException, RuntimeException )
else
{
// Variable not known
- bVarNotSubstituted = false;
+ bVarNotSubstituted = true;
nPosition += nLength;
}