silence compiler warning that 's' may be used uninitialized in the load function.

This commit is contained in:
Christian Heimes 2014-01-27 01:03:53 +01:00
parent a09daef09e
commit 27ea78b352
1 changed files with 1 additions and 1 deletions

View File

@ -6149,7 +6149,7 @@ static PyObject *
load(UnpicklerObject *self)
{
PyObject *value = NULL;
char *s;
char *s = NULL;
self->num_marks = 0;
self->proto = 0;