summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-12-19 18:45:55 +0100
committerLuboš Luňák <l.lunak@suse.cz>2012-12-19 18:45:55 +0100
commitf484a8949334cdb659f3a0c222052fc05a9e76e5 (patch)
tree0cfa784d3744d3725bed1773b8f3827db72929a0 /sal
parent8b9b779e9fc1de7186217b7be75ef02bb66e2da9 (diff)
Revert "fix crash for fdo#58306 when appending to OUStringBuffer initialised with """
newFromLiteral doesn't cheat, it's broken This reverts commit 8b9b779e9fc1de7186217b7be75ef02bb66e2da9.
Diffstat (limited to 'sal')
-rw-r--r--sal/inc/rtl/ustrbuf.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/inc/rtl/ustrbuf.hxx b/sal/inc/rtl/ustrbuf.hxx
index b6ddb66a9562..98f1fc5ee911 100644
--- a/sal/inc/rtl/ustrbuf.hxx
+++ b/sal/inc/rtl/ustrbuf.hxx
@@ -183,7 +183,7 @@ public:
, nCapacity( internal::ConstCharArrayDetector< T, void >::size - 1 + 16 )
{
assert( strlen( literal ) == internal::ConstCharArrayDetector< T >::size - 1 );
- ( internal::ConstCharArrayDetector< T >::size - 1 ) ? rtl_uString_newFromLiteral( &pData, literal, internal::ConstCharArrayDetector< T, void >::size - 1, 16 ) : rtl_uString_new_WithLength( &pData, 16 );
+ rtl_uString_newFromLiteral( &pData, literal, internal::ConstCharArrayDetector< T, void >::size - 1, 16 );
#ifdef RTL_STRING_UNITTEST
rtl_string_unittest_const_literal = true;
#endif