]> granicus.if.org Git - curl/commitdiff
Curl_rand: Uninitialized variable: r
authorDaniel Stenberg <daniel@haxx.se>
Thu, 23 Oct 2014 08:00:39 +0000 (10:00 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 23 Oct 2014 08:01:36 +0000 (10:01 +0200)
This is not actually used uninitialized but we silence warnings.

Bug: http://curl.haxx.se/bug/view.cgi?id=1437
Reported-by: Julien
lib/vtls/vtls.c

index fd025b1dae77e1c9d9df83993ee1390c2836f582..6c1fdc8610a097955e9799819bfdab2bf4c59576 100644 (file)
@@ -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;