summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-09-25 15:08:51 +0100
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2020-09-29 11:25:03 +0200
commite88369905f04ad22e424b03358450b584fdeaebe (patch)
treee43c976347c935335aeb0ebd9ee6279d0fa73d27
parentResolves: tdf#133812 Add the 'Result' style again used by the Subtotal tool (diff)
downloadcore-e88369905f04ad22e424b03358450b584fdeaebe.tar.gz
core-e88369905f04ad22e424b03358450b584fdeaebe.zip
Related: tdf#136985 SfxStringListItem::GetString() crash in empty case
probably since... commit a573b8b21688d9681f4fa129ec37cf89954e9d1c Date: Sat May 21 16:14:56 2011 -0430 Replace List for std::vector in SfxStringListItem. Change-Id: I7060b5693ba08fa5f70cc5cb3ae1b7a4722a31a7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103340 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> (cherry picked from commit 7c8f997321e136208e8983ab6ad78cc33891125f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103572 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org> (cherry picked from commit 0451222f307e00ce688c564c10f39e894973c91e) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103576 Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r--svl/source/items/slstitm.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/svl/source/items/slstitm.cxx b/svl/source/items/slstitm.cxx
index 225c43f08cfe..a18497a06b39 100644
--- a/svl/source/items/slstitm.cxx
+++ b/svl/source/items/slstitm.cxx
@@ -127,13 +127,12 @@ OUString SfxStringListItem::GetString()
OUStringBuffer aStr;
if ( mpList )
{
- std::vector<OUString>::const_iterator iter = mpList->begin();
- for (;;)
+ for (auto iter = mpList->begin(), end = mpList->end(); iter != end;)
{
aStr.append(*iter);
++iter;
- if (iter == mpList->end())
+ if (iter == end)
break;
aStr.append("\r");