summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sot/source/base/formats.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sot/source/base/formats.cxx b/sot/source/base/formats.cxx
index 1c5ec071939c..2bfa0661f4bf 100644
--- a/sot/source/base/formats.cxx
+++ b/sot/source/base/formats.cxx
@@ -1325,7 +1325,8 @@ rEntry
if( pFDesc->cItems )
{
- bRet = (4 < (pFDesc->fgd[ 0 ].cFileName.size())) && sDesc.Copy( sDesc.Len()-4 ).EqualsIgnoreCaseAscii( ".URL" );
+ ByteString sDesc( pFDesc->fgd[ 0 ].cFileName );
+ bRet = 4 < sDesc.Len() && sDesc.Copy( sDesc.Len()-4 ).EqualsIgnoreCaseAscii( ".URL" );
}
}
}