commit | ed9884b2d0d5f1d4b1a8b252c4cd702095e0fc23 | [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 | a6257f669a8bb6d02f073c48c1aff0c14223bb50 | |
parent | bde2985f1d03d4e11b41a82927acf7cc93ae9faf [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 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;