diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-11-10 17:46:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-11-11 00:03:37 +0100 |
commit | 1fc79c3491906d85ed9972e161112459035b62ed (patch) | |
tree | 29f284f4a814b2b7a61417046364b489ce2187d7 /include/rtl/strbuf.hxx | |
parent | f697d06b67e91c704c088dceafade209462e0b95 (diff) |
Avoid using O[U]StringConcat lvalues containing dangling refs to temporaries
...in code accidentally using auto like
> auto const aURL = uri->getUriReference() + "/"
> + INetURLObject::encode(
> m_sEmbeddedName, INetURLObject::PART_FPATH,
> INetURLObject::EncodeMechanism::All);
>
> uno::Reference<uno::XInterface> xDataSource(xDatabaseContext->getByName(aURL), uno::UNO_QUERY);
in <https://gerrit.libreoffice.org/#/c/44569/1> "Properly construct
vnd.sun.star.pkg URL" did (causing hard to debug test failures there).
So make functions taking O[U]StringConcat take those by rvalue reference.
Unfortunately, that also needed adaption of various functions that just forward
their arguments. And some code in sc/qa/unit/ucalc_formula.cxx used
CPPUNIT_ASSERT_EQUAL on OUStringConcat arguments in cases where that happened to
actually compile (because the structure of the two OUStringConcats was
identical), which needed adaption too (but which would arguably better use
CPPUNIT_ASSERT_EQUAL_MESSAGE, anyway).
Change-Id: I8994d932aaedb2a491c7c81c167e93379d4fb6e3
Reviewed-on: https://gerrit.libreoffice.org/44608
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/rtl/strbuf.hxx')
-rw-r--r-- | include/rtl/strbuf.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rtl/strbuf.hxx b/include/rtl/strbuf.hxx index 638c30bb957a..0c3b53d8e8b4 100644 --- a/include/rtl/strbuf.hxx +++ b/include/rtl/strbuf.hxx @@ -214,7 +214,7 @@ public: @internal */ template< typename T1, typename T2 > - OStringBuffer( const OStringConcat< T1, T2 >& c ) + OStringBuffer( OStringConcat< T1, T2 >&& c ) { const sal_Int32 l = c.length(); nCapacity = l + 16; @@ -279,7 +279,7 @@ public: #if defined LIBO_INTERNAL_ONLY /** @overload @since LibreOffice 5.3 */ template<typename T1, typename T2> - OStringBuffer & operator =(OStringConcat<T1, T2> const & concat) { + OStringBuffer & operator =(OStringConcat<T1, T2> && concat) { sal_Int32 const n = concat.length(); if (n >= nCapacity) { ensureCapacity(n + 16); //TODO: check for overflow @@ -549,7 +549,7 @@ public: @internal */ template< typename T1, typename T2 > - OStringBuffer& append( const OStringConcat< T1, T2 >& c ) + OStringBuffer& append( OStringConcat< T1, T2 >&& c ) { sal_Int32 l = c.length(); if( l == 0 ) |