Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:plater
bash
bash-4.0-security.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File bash-4.0-security.patch of Package bash
--- variables.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) --- variables.c +++ variables.c 2016-09-14 08:51:32.306631046 +0000 @@ -1300,6 +1300,7 @@ static unsigned long rseed = 1; static int last_random_value; static int seeded_subshell = 0; +#if !defined(linux) /* A linear congruential random number generator based on the example one in the ANSI C standard. This one isn't very good, but a more complicated one is overkill. */ @@ -1344,6 +1345,32 @@ seedrand () sbrand (tv.tv_sec ^ tv.tv_usec ^ getpid ()); } +#else +/* Use ISO C Random Number Functions of the glibc */ +static int +brand (void) +{ + if (rseed == 0) + seedrand (); + return rand() & 32767; +} + +static void +sbrand (unsigned long seed) +{ + rseed = seed; + srand(seed); +} + +static void +seedrand (void) +{ + struct timeval tv; + gettimeofday (&tv, NULL); + srand (tv.tv_sec ^ tv.tv_usec ^ getpid ()); +} +#endif + static SHELL_VAR * assign_random (self, value, unused, key) SHELL_VAR *self;
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor