Skip to content
Snippets Groups Projects
Commit e36115d6 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Curl_rand: Uninitialized variable: r

This is not actually used uninitialized but we silence warnings.

Bug: http://curl.haxx.se/bug/view.cgi?id=1437
Reported-by: Julien
parent 4cb7aa06
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,7 @@ void Curl_free_ssl_config(struct ssl_config_data* sslc)
unsigned int Curl_rand(struct SessionHandle *data)
{
unsigned int r;
unsigned int r = 0;
static unsigned int randseed;
static bool seeded = FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment