From: Christian Heimes Date: Mon, 27 Jan 2014 00:03:53 +0000 (+0100) Subject: silence compiler warning that 's' may be used uninitialized in the load function. X-Git-Tag: v3.4.0rc1~229^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27ea78b352fc33aa9d79a298a4b313682a42ed21;p=thirdparty%2FPython%2Fcpython.git silence compiler warning that 's' may be used uninitialized in the load function. --- diff --git a/Modules/_pickle.c b/Modules/_pickle.c index dabd81e3ab56..54a5ec544d38 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;