silence compiler warning that 's' may be used uninitialized in the load function.
This commit is contained in:
parent
a09daef09e
commit
27ea78b352
|
@ -6149,7 +6149,7 @@ static PyObject *
|
|||
load(UnpicklerObject *self)
|
||||
{
|
||||
PyObject *value = NULL;
|
||||
char *s;
|
||||
char *s = NULL;
|
||||
|
||||
self->num_marks = 0;
|
||||
self->proto = 0;
|
||||
|
|
Loading…
Reference in New Issue