Commit 947ff1e6 authored by Christian Heimes's avatar Christian Heimes

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

parent 6d351686
...@@ -6149,7 +6149,7 @@ static PyObject * ...@@ -6149,7 +6149,7 @@ static PyObject *
load(UnpicklerObject *self) load(UnpicklerObject *self)
{ {
PyObject *value = NULL; PyObject *value = NULL;
char *s; char *s = NULL;
self->num_marks = 0; self->num_marks = 0;
self->proto = 0; self->proto = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment