diff options
author | Christian Heimes <christian@python.org> | 2014-01-27 01:03:53 +0100 |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2014-01-27 01:03:53 +0100 |
commit | 27ea78b352fc33aa9d79a298a4b313682a42ed21 (patch) | |
tree | 4216f7b4c95b566e113f53a46b7373100f1f53b9 /Modules/_pickle.c | |
parent | a09daef09e787809dad237b9908e784cd0b014c1 (diff) | |
download | cpython-git-27ea78b352fc33aa9d79a298a4b313682a42ed21.tar.gz |
silence compiler warning that 's' may be used uninitialized in the load function.
Diffstat (limited to 'Modules/_pickle.c')
-rw-r--r-- | Modules/_pickle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c index dabd81e3ab..54a5ec544d 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -6149,7 +6149,7 @@ static PyObject * load(UnpicklerObject *self) { PyObject *value = NULL; - char *s; + char *s = NULL; self->num_marks = 0; self->proto = 0; |