summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2011-06-16 10:20:25 +0000
committerPierre Joye <pajoye@php.net>2011-06-16 10:20:25 +0000
commit25849ab96739af4664a339ca81db57abc6154daf (patch)
treec5c04586ff46f3337bc13f86be4c8d075e276ab5
parent358316b2ed3202aaf0215d42ebd5e5ece69a1a51 (diff)
downloadphp-git-25849ab96739af4664a339ca81db57abc6154daf.tar.gz
- fix nts build
-rw-r--r--win32/winutil.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/win32/winutil.c b/win32/winutil.c
index b94fcc482d..dae01584a9 100644
--- a/win32/winutil.c
+++ b/win32/winutil.c
@@ -82,7 +82,10 @@ PHPAPI int php_win32_get_random_bytes(unsigned char *buf, size_t size) { /* {{{
BOOL ret;
size_t i = 0;
+#ifdef ZTS
tsrm_mutex_lock(php_lock_win32_cryptoctx);
+#endif
+
if (has_crypto_ctx == 0) {
if (!CryptAcquireContext(&hCryptProv, NULL, NULL, PROV_RSA_FULL, CRYPT_MACHINE_KEYSET)) {
/* Could mean that the key container does not exist, let try
@@ -96,7 +99,10 @@ PHPAPI int php_win32_get_random_bytes(unsigned char *buf, size_t size) { /* {{{
}
}
}
+
+#ifdef ZTS
tsrm_mutex_unlock(php_lock_win32_cryptoctx);
+#endif
if (has_crypto_ctx == 0) {
return FAILURE;