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

Skip to content

Commit 60bf2fc

Browse files
committed
Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMAIL/GEN_URI/GEN_DNS case
1 parent e1040e2 commit 60bf2fc

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
@@ -721,7 +721,7 @@ _get_peer_alt_names (X509 *certificate) {
721721

722722
int i, j;
723723
PyObject *peer_alt_names = Py_None;
724-
PyObject *v, *t;
724+
PyObject *v = NULL, *t;
725725
X509_EXTENSION *ext = NULL;
726726
GENERAL_NAMES *names = NULL;
727727
GENERAL_NAME *name;

0 commit comments

Comments
 (0)