mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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:
parent
e1040e276b
commit
60bf2fc25b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue