mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
silence compiler warning that 's' may be used uninitialized in the load function.
This commit is contained in:
parent
a09daef09e
commit
27ea78b352
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue