Changeset 41887 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jun 22, 2012 2:06:22 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78740
- Location:
- trunk/src/VBox/Runtime/common/rand
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/rand/rand.cpp
r40798 r41887 62 62 { 63 63 RTRAND hRand; 64 int rc = RTRandAdvCreateSystemFaster(&hRand); 64 int rc = RTRandAdvCreateOpenssl(&hRand); 65 if (RT_FAILURE(rc)) 66 rc = RTRandAdvCreateSystemFaster(&hRand); 65 67 if (RT_FAILURE(rc)) 66 68 rc = RTRandAdvCreateParkMiller(&hRand);
Note:
See TracChangeset
for help on using the changeset viewer.