[ADVAPI32]
authorThomas Faber <thomas.faber@reactos.org>
Mon, 10 Oct 2011 00:17:02 +0000 (00:17 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Mon, 10 Oct 2011 00:17:02 +0000 (00:17 +0000)
- Hackfix RtlGenRandom to be slightly less dependent on the current time, while staying very un-random.
- Should fix services problems (no joke) due to non-unique RPC UUIDs
See issue #6542 for more details.

svn path=/trunk/; revision=54069

reactos/dll/win32/advapi32/misc/sysfunc.c

index 1512d38..97d4ad2 100644 (file)
@@ -576,6 +576,8 @@ SystemFunction036(PVOID pbBuffer, ULONG dwLen)
     DWORD dwSeed;
     PBYTE pBuffer;
     ULONG uPseudoRandom;
+    LARGE_INTEGER time;
+    static ULONG uCounter = 17;
 
     if(!pbBuffer || !dwLen)
     {
@@ -583,8 +585,9 @@ SystemFunction036(PVOID pbBuffer, ULONG dwLen)
         return TRUE;
     }
 
-    /* Get the first seed from the tick count */
-    dwSeed = GetTickCount();
+    /* Get the first seed from the performance counter */
+    QueryPerformanceCounter(&time);
+    dwSeed = time.LowPart ^ time.HighPart ^ RtlUlongByteSwap(uCounter++);
 
     /* We will access the buffer bytewise */
     pBuffer = (PBYTE)pbBuffer;