From 5779f46bfdefe39bfc309a954e4ad2a10beebd77 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Thu, 10 May 2007 21:26:51 +0000 Subject: [PATCH] MFB --- ext/soap/php_http.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); -- 2.50.1