mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 03:15:00 -06:00
9.34
This commit is contained in:
committed by
Kornel Lesiński
parent
83f8ddcc5b
commit
f08f4dcc3c
10
CPP/7zip/Crypto/RandGen.cpp
Executable file → Normal file
10
CPP/7zip/Crypto/RandGen.cpp
Executable file → Normal file
@@ -2,7 +2,7 @@
|
||||
|
||||
#include "StdAfx.h"
|
||||
|
||||
#include "Windows/Synchronization.h"
|
||||
#include "../../Windows/Synchronization.h"
|
||||
|
||||
#include "RandGen.h"
|
||||
|
||||
@@ -44,7 +44,13 @@ void CRandomGenerator::Init()
|
||||
HASH_UPD(pid);
|
||||
#endif
|
||||
|
||||
for (unsigned i = 0; i < 1000; i++)
|
||||
for (unsigned i = 0; i <
|
||||
#ifdef _DEBUG
|
||||
2;
|
||||
#else
|
||||
1000;
|
||||
#endif
|
||||
i++)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
LARGE_INTEGER v;
|
||||
|
||||
Reference in New Issue
Block a user