From c6560c6f07f7f71842d7314157feaca2fa4a03c9 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 21 Nov 2011 12:56:43 +0000 Subject: Resolves fdo#41295 tmp name reuse in mass pdf export --- unotools/source/ucbhelper/tempfile.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unotools') diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx index d157bab79d01..6728c808f985 100644 --- a/unotools/source/ucbhelper/tempfile.cxx +++ b/unotools/source/ucbhelper/tempfile.cxx @@ -206,8 +206,8 @@ void CreateTempName_Impl( String& rName, sal_Bool bKeep, sal_Bool bDir = sal_Tru aName += String::CreateFromAscii( "lu" ); rName.Erase(); - unsigned long nSeed = Time::GetSystemTicks() % nMax; - for ( unsigned long u = nSeed; ++u != nSeed; ) + static unsigned long u = Time::GetSystemTicks() % nMax; + for ( unsigned long nSeed = u; ++u != nSeed; ) { u %= nMax; String aTmp( aName ); -- cgit