Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMAIL/GEN_URI/GEN_DNS case

This commit is contained in:
Christian Heimes 2013-09-05 16:04:35 +02:00
parent e1040e276b
commit 60bf2fc25b
1 changed files with 1 additions and 1 deletions

View File

@ -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;