Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMAIL/GEN_URI/GEN_DNS case
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index a045be4..a0aebd0 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -670,7 +670,7 @@
 
     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;