Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
45d31919
Commit
45d31919
authored
Sep 02, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
! It did say NON-PREDICTIBLE at the top of the file, didn't it?
parent
29b9c7e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
src/misc/rand.c
src/misc/rand.c
+6
-5
No files found.
src/misc/rand.c
View file @
45d31919
...
...
@@ -116,9 +116,7 @@ void vlc_rand_bytes (void *buf, size_t len)
}
#else
/* WIN32 */
/* It would be better to use rand_s() instead of rand() but it's not possible
* while we support Win 2OOO and until it gets included in mingw */
/* #define _CRT_RAND_S*/
#define _CRT_RAND_S
#include <stdlib.h>
void
vlc_rand_bytes
(
void
*
buf
,
size_t
len
)
...
...
@@ -126,8 +124,11 @@ void vlc_rand_bytes (void *buf, size_t len)
while
(
len
>
0
)
{
unsigned
int
val
;
/*rand_s (&val);*/
val
=
rand
();
#if 0
rand_s (&val);
#else
abort
();
#endif
if
(
len
<
sizeof
(
val
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment