[Libreoffice-commits] .: ucb/source
Julien Nabet
serval2412 at kemper.freedesktop.org
Mon Jan 16 11:47:17 PST 2012
ucb/source/ucp/webdav/LockEntrySequence.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 9dfa70c22d4f3ad480ffb98c0c8e1ea40f03dc18
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Mon Jan 16 20:45:44 2012 +0100
Fix "Same expression on both sides of '||'"
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