summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-09-05 14:31:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-09-05 14:31:37 (GMT)
commitef31a00e996ca62080451ad6f3d96256103859ae (patch)
tree13ac6f4240a8727be8cf617b1e5072b2d6e9a833
parent362c1b513d5b7354f50dd2371d178c493d498a2f (diff)
parent60bf2fc25b0e08d33340a35efc59f0e05e9c615a (diff)
downloadcpython-ef31a00e996ca62080451ad6f3d96256103859ae.zip
cpython-ef31a00e996ca62080451ad6f3d96256103859ae.tar.gz
cpython-ef31a00e996ca62080451ad6f3d96256103859ae.tar.bz2
Merge heads
-rw-r--r--Modules/_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index 82d0a6a..1ae543f 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -721,7 +721,7 @@ _get_peer_alt_names (X509 *certificate) {
int i, j;
PyObject *peer_alt_names = Py_None;
- PyObject *v, *t;
+ PyObject *v = NULL, *t;
X509_EXTENSION *ext = NULL;
GENERAL_NAMES *names = NULL;
GENERAL_NAME *name;