Fixed bug. Thanks to Marko Kreen <marko@l-t.ee> for reporting that.

2000-04-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
	<marko@l-t.ee> for reporting that.
This commit is contained in:
Sebastian Wilhelmi 2000-04-07 11:44:43 +00:00 committed by Sebastian Wilhelmi
parent 7bc57ad22a
commit 028a71701c
10 changed files with 40 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2000-04-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
<marko@l-t.ee> for reporting that.
2000-03-26 Tor Lillqvist <tml@iki.fi>
* README.win32: Tell about using the mingw-based gcc, which is

View File

@ -1,3 +1,8 @@
2000-04-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
<marko@l-t.ee> for reporting that.
2000-03-26 Tor Lillqvist <tml@iki.fi>
* README.win32: Tell about using the mingw-based gcc, which is

View File

@ -1,3 +1,8 @@
2000-04-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
<marko@l-t.ee> for reporting that.
2000-03-26 Tor Lillqvist <tml@iki.fi>
* README.win32: Tell about using the mingw-based gcc, which is

View File

@ -1,3 +1,8 @@
2000-04-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
<marko@l-t.ee> for reporting that.
2000-03-26 Tor Lillqvist <tml@iki.fi>
* README.win32: Tell about using the mingw-based gcc, which is

View File

@ -1,3 +1,8 @@
2000-04-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
<marko@l-t.ee> for reporting that.
2000-03-26 Tor Lillqvist <tml@iki.fi>
* README.win32: Tell about using the mingw-based gcc, which is

View File

@ -1,3 +1,8 @@
2000-04-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
<marko@l-t.ee> for reporting that.
2000-03-26 Tor Lillqvist <tml@iki.fi>
* README.win32: Tell about using the mingw-based gcc, which is

View File

@ -1,3 +1,8 @@
2000-04-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
<marko@l-t.ee> for reporting that.
2000-03-26 Tor Lillqvist <tml@iki.fi>
* README.win32: Tell about using the mingw-based gcc, which is

View File

@ -1,3 +1,8 @@
2000-04-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
<marko@l-t.ee> for reporting that.
2000-03-26 Tor Lillqvist <tml@iki.fi>
* README.win32: Tell about using the mingw-based gcc, which is

View File

@ -85,8 +85,6 @@ g_rand_new (void)
if (dev_urandom)
{
if (fread (&seed, sizeof (seed), 1, dev_urandom) != 1)
seed = 0;
else
dev_urandom_exists = FALSE;
fclose (dev_urandom);
}

View File

@ -85,8 +85,6 @@ g_rand_new (void)
if (dev_urandom)
{
if (fread (&seed, sizeof (seed), 1, dev_urandom) != 1)
seed = 0;
else
dev_urandom_exists = FALSE;
fclose (dev_urandom);
}