Close the implicitely opened registry key.
authorRichard Levitte <levitte@openssl.org>
Thu, 14 Nov 2002 23:33:28 +0000 (23:33 +0000)
committerRichard Levitte <levitte@openssl.org>
Thu, 14 Nov 2002 23:33:28 +0000 (23:33 +0000)
PR: 264

crypto/rand/rand_win.c

index c1b955b06f07b21f89aecb337f75b21fc6746658..242febe270ba40320b138f6cdfa0bda9269755c0 100644 (file)
@@ -287,9 +287,18 @@ int RAND_poll(void)
                        {
                         /* For entropy count assume only least significant
                         * byte of each DWORD is random.
-                         */
+                        */
                        RAND_add(&length, sizeof(length), 0);
                        RAND_add(buf, length, length / 4.0);
+
+                       /* Close the Registry Key to allow Windows to cleanup/close
+                        * the open handle
+                        * Note: The 'HKEY_PERFORMANCE_DATA' key is implicitly opened
+                        *       when the RegQueryValueEx above is done.  However, if
+                        *       it is not explicitly closed, it can cause disk
+                        *       partition manipulation problems.
+                        */
+                       RegCloseKey(HKEY_PERFORMANCE_DATA);
                        }
                if (buf)
                        free(buf);