commit | 60bf2fc25b0e08d33340a35efc59f0e05e9c615a | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Thu Sep 05 16:04:35 2013 +0200 |
committer | Christian Heimes <christian@cheimes.de> | Thu Sep 05 16:04:35 2013 +0200 |
tree | 713a3d7a378425675adfc3accd382f6a26a59193 | |
parent | e1040e276b11f21b7007c139269c38d5eba04f5e [diff] |
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 82d0a6a..1ae543f 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c
@@ -721,7 +721,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;