diff options
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/crypto/Standard2007Engine.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/oox/source/crypto/Standard2007Engine.cxx b/oox/source/crypto/Standard2007Engine.cxx index 748911612a8f..c70b120e3666 100644 --- a/oox/source/crypto/Standard2007Engine.cxx +++ b/oox/source/crypto/Standard2007Engine.cxx @@ -30,10 +30,7 @@ namespace void lclRandomGenerateValues(sal_uInt8* aArray, sal_uInt32 aSize) { - TimeValue aTime; - osl_getSystemTime(&aTime); rtlRandomPool aRandomPool = rtl_random_createPool(); - rtl_random_addBytes(aRandomPool, &aTime, 8); rtl_random_getBytes(aRandomPool, aArray, aSize); rtl_random_destroyPool(aRandomPool); } |