summaryrefslogtreecommitdiff
path: root/Python/random.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-08-10 10:41:52 -0700
committerRaymond Hettinger <python@rcn.com>2014-08-10 10:41:52 -0700
commitd4cc49f5f367f488379150588d07c7f77dc917e5 (patch)
tree97b4a85c63fe35d488668f2f3d9652231431a572 /Python/random.c
parent9aebd07ac628842838a281dad04c891c410b0396 (diff)
parent7f8878040c398fac32114fb7072cfabf7f7f3fa6 (diff)
downloadcpython-d4cc49f5f367f488379150588d07c7f77dc917e5.tar.gz
merge
Diffstat (limited to 'Python/random.c')
-rw-r--r--Python/random.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/Python/random.c b/Python/random.c
index 2941ba16af..a052b65725 100644
--- a/Python/random.c
+++ b/Python/random.c
@@ -15,8 +15,6 @@ static int _Py_HashSecret_Initialized = 0;
#endif
#ifdef MS_WINDOWS
-/* This handle is never explicitly released. Instead, the operating
- system will release it when the process terminates. */
static HCRYPTPROV hCryptProv = 0;
static int
@@ -298,7 +296,12 @@ _PyRandom_Init(void)
void
_PyRandom_Fini(void)
{
-#ifndef MS_WINDOWS
+#ifdef MS_WINDOWS
+ if (hCryptProv) {
+ CryptReleaseContext(hCryptProv, 0);
+ hCryptProv = 0;
+ }
+#else
dev_urandom_close();
#endif
}