]> granicus.if.org Git - python/commit
Issue #21151: Fixed a segfault in the winreg module.
authorZachary Ware <zachary.ware@gmail.com>
Thu, 3 Jul 2014 15:58:06 +0000 (10:58 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Thu, 3 Jul 2014 15:58:06 +0000 (10:58 -0500)
commitad4690fcca5704277abece184d49b39a913029d4
tree20fc0b168375bc7b17bc7b34f1b053cac40b908a
parent0d50af45b654784fe639ab6489f91e7524ed3ace
Issue #21151: Fixed a segfault in the winreg module.

When ``None`` was passed as a ``REG_BINARY`` value to SetValueEx,
PyMem_DEL was called on an uninitialized buffer.  Patch by John Ehresman.

(Also an incidental typo fix in a comment in test_winreg)
Lib/test/test_winreg.py
Misc/NEWS
PC/winreg.c