summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/cacher/cachedcontentresultset.cxx2
-rw-r--r--ucb/source/ucp/ftp/ftpdirp.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/cacher/cachedcontentresultset.cxx b/ucb/source/cacher/cachedcontentresultset.cxx
index 833af4daf9f3..762d3f192bc1 100644
--- a/ucb/source/cacher/cachedcontentresultset.cxx
+++ b/ucb/source/cacher/cachedcontentresultset.cxx
@@ -167,7 +167,7 @@ sal_Int32 CachedContentResultSet::CCRS_Cache
return 0;
sal_Int32 nEnd = m_pResult->StartIndex;
if( m_pResult->Orientation )
- return nEnd += m_pResult->Rows.getLength() - 1;
+ return nEnd + m_pResult->Rows.getLength() - 1;
else
return nEnd;
}
diff --git a/ucb/source/ucp/ftp/ftpdirp.cxx b/ucb/source/ucp/ftp/ftpdirp.cxx
index 723f78b51cef..69bea64ab0e8 100644
--- a/ucb/source/ucp/ftp/ftpdirp.cxx
+++ b/ucb/source/ucp/ftp/ftpdirp.cxx
@@ -845,7 +845,7 @@ bool FTPDirectoryParser::parseUNIX (
const char *pBuffer)
{
const char *p1, *p2;
- p1 = p2 = pBuffer;
+ p1 = pBuffer;
if (!((*p1 == '-') || (*p1 == 'd') || (*p1 == 'l')))
return false;