projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a09daef
)
silence compiler warning that 's' may be used uninitialized in the load function.
author
Christian Heimes
<christian@python.org>
Mon, 27 Jan 2014 00:03:53 +0000
(
01:03
+0100)
committer
Christian Heimes
<christian@python.org>
Mon, 27 Jan 2014 00:03:53 +0000
(
01:03
+0100)
Modules/_pickle.c
patch
|
blob
|
history
diff --git
a/Modules/_pickle.c
b/Modules/_pickle.c
index dabd81e3ab5687ff0136457c81206344381e72b2..54a5ec544d38e2c45644df85c6f5ee43ebc357ec 100644
(file)
--- 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;