diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-09-27 01:16:03 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-09-27 01:16:03 -0700 |
commit | 6aa1564e9cdc89d97ede740d65af4c61968d4725 (patch) | |
tree | c5bfe9517e7ec2465117c1610f11d2eba92a67bc | |
parent | d2134c71a12e8deac9ba6b4f4ffe4d271d49cabe (diff) | |
download | cpython-git-6aa1564e9cdc89d97ede740d65af4c61968d4725.tar.gz |
initialize return value to NULL to avoid compiler compliants (closes #25245)
-rw-r--r-- | Modules/_pickle.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 68d2a60774..c6cb8bc7c0 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -1182,6 +1182,7 @@ _Unpickler_Read(UnpicklerObject *self, char **s, Py_ssize_t n) { 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, |