summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-09-05 14:32:15 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-09-05 14:32:15 (GMT)
commit3d46b0be2af5ae7ee8720f29b7e50277a24d22b2 (patch)
tree0c57394b91a89719639d946087193f1f39451391
parent1e0d82cece755018a022acd5d1f7c0eb890e03db (diff)
parente1d5e543e445de65789be8ed0ae0fdabc6902f66 (diff)
downloadcpython-3d46b0be2af5ae7ee8720f29b7e50277a24d22b2.zip
cpython-3d46b0be2af5ae7ee8720f29b7e50277a24d22b2.tar.gz
cpython-3d46b0be2af5ae7ee8720f29b7e50277a24d22b2.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 48804ef..e116d3d 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -755,7 +755,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;