From: Jay Satiro Date: Wed, 16 May 2018 06:18:50 +0000 (-0400) Subject: rand: fix typo X-Git-Tag: curl-7_61_0~155 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f9bbd3ac78191134bdd02df1b95959eb43efeba;p=curl rand: fix typo --- diff --git a/lib/rand.c b/lib/rand.c index 0769ed151..1dc2504ac 100644 --- a/lib/rand.c +++ b/lib/rand.c @@ -158,7 +158,7 @@ CURLcode Curl_rand_hex(struct Curl_easy *data, unsigned char *rnd, DEBUGASSERT(num > 1); #ifdef __clang_analyzer__ - /* This silences a scan-build warning about accesssing this buffer with + /* This silences a scan-build warning about accessing this buffer with uninitialized memory. */ memset(buffer, 0, sizeof(buffer)); #endif