Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2d7aba3

Browse files
committed
Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMAIL/GEN_URI/GEN_DNS case
2 parents 555e57d + 60bf2fc commit 2d7aba3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_ssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ _get_peer_alt_names (X509 *certificate) {
755755

756756
int i, j;
757757
PyObject *peer_alt_names = Py_None;
758-
PyObject *v, *t;
758+
PyObject *v = NULL, *t;
759759
X509_EXTENSION *ext = NULL;
760760
GENERAL_NAMES *names = NULL;
761761
GENERAL_NAME *name;

0 commit comments

Comments
 (0)