diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2019-10-17 20:33:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-23 08:55:00 +0200 |
commit | c68be56c295c8dda3043c80d4641575ec2799e55 (patch) | |
tree | 40fc9a82e021498f7cebe76e59bec5bb85d6385c /tools | |
parent | 437dc68285dab0f08a1ded2193d86d64f560cd9b (diff) |
size some stringbuffer to prevent re-alloc
Change-Id: I385587a922c555c320a45dcc6d644315b72510e9
Reviewed-on: https://gerrit.libreoffice.org/81278
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/ref/globname.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/ref/globname.cxx b/tools/source/ref/globname.cxx index 6cbff020669c..eed9b8fd5a04 100644 --- a/tools/source/ref/globname.cxx +++ b/tools/source/ref/globname.cxx @@ -227,7 +227,7 @@ bool SvGlobalName::MakeId( const OUString & rIdStr ) OUString SvGlobalName::GetHexName() const { - OStringBuffer aHexBuffer; + OStringBuffer aHexBuffer(36); sal_Char buf[ 10 ]; sprintf( buf, "%8.8" SAL_PRIXUINT32, pImp->szData.Data1 ); |