[Libreoffice-commits] .: Branch 'libreoffice-3-5' - ucb/source

Petr Mladek pmladek at kemper.freedesktop.org
Tue Jan 24 06:13:13 PST 2012


 ucb/source/ucp/webdav/LockEntrySequence.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3eff3abb4ea327b884a35e20bcaa3d371ce526f0
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Mon Jan 16 20:45:44 2012 +0100

    Fix "Same expression on both sides of '||'"
    
    Signed-off-by: Petr Mladek <pmladek at suse.cz>

diff --git a/ucb/source/ucp/webdav/LockEntrySequence.cxx b/ucb/source/ucp/webdav/LockEntrySequence.cxx
index 49e5547..075af01 100644
--- a/ucb/source/ucp/webdav/LockEntrySequence.cxx
+++ b/ucb/source/ucp/webdav/LockEntrySequence.cxx
@@ -171,7 +171,7 @@ extern "C" int LockEntrySequence_endelement_callback(
             break;
 
         case STATE_LOCKENTRY:
-            if ( !pCtx->hasType || !pCtx->hasType )
+            if ( !pCtx->hasType || !pCtx->hasScope )
                 return 1; // abort
             break;
 


More information about the Libreoffice-commits mailing list