From: Antony Dovgal Date: Thu, 10 May 2007 21:26:51 +0000 (+0000) Subject: MFB X-Git-Tag: RELEASE_1_2_0~112 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5779f46bfdefe39bfc309a954e4ad2a10beebd77;p=php MFB --- diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index 160a204289..f2c8fba64d 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -465,10 +465,9 @@ try_again: char HA1[33], HA2[33], response[33], cnonce[33], nc[9]; PHP_MD5_CTX md5ctx; unsigned char hash[16]; - unsigned int ctx; PHP_MD5Init(&md5ctx); - snprintf(cnonce, sizeof(cnonce), "%d", php_rand_r(&ctx)); + snprintf(cnonce, sizeof(cnonce), "%ld", php_rand(TSRMLS_C); PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, strlen(cnonce)); PHP_MD5Final(hash, &md5ctx); make_digest(cnonce, hash);