[Libreoffice-commits] core.git: framework/source

Caolán McNamara caolanm at redhat.com
Mon Feb 10 04:32:41 PST 2014


 framework/source/services/substitutepathvars.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5bf2b49ef7f0534138cc2303b8fea688698048c4
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Feb 10 12:31:22 2014 +0000

    coverity#1169812 condition appears the wrong way around
    
    Change-Id: I97960a1491a247ef9db9536f904e4203e0903abd

diff --git a/framework/source/services/substitutepathvars.cxx b/framework/source/services/substitutepathvars.cxx
index d651238..8daf83d 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;
             }
 


More information about the Libreoffice-commits mailing list