commit | 6aa1564e9cdc89d97ede740d65af4c61968d4725 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Sep 27 01:16:03 2015 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Sep 27 01:16:03 2015 -0700 |
tree | c5bfe9517e7ec2465117c1610f11d2eba92a67bc | |
parent | d2134c71a12e8deac9ba6b4f4ffe4d271d49cabe [diff] |
initialize return value to NULL to avoid compiler compliants (closes #25245)
diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 68d2a60..c6cb8bc 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c
@@ -1182,6 +1182,7 @@ { Py_ssize_t num_read; + *s = NULL; if (self->next_read_idx > PY_SSIZE_T_MAX - n) { PickleState *st = _Pickle_GetGlobalState(); PyErr_SetString(st->UnpicklingError,