diff options
author | Thomas Wouters <thomas@python.org> | 2006-03-01 22:15:15 +0000 |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2006-03-01 22:15:15 +0000 |
commit | f86d1e810d5827c46f3d7fc519e308e310406941 (patch) | |
tree | d84de9dd1ffa40e93b136ce612f9db9478461773 /Modules/cStringIO.c | |
parent | 54ac29497ea7f47852ec6f3ffb2570bbc29ce847 (diff) | |
download | cpython-git-f86d1e810d5827c46f3d7fc519e308e310406941.tar.gz |
Silence gcc (4.0.x) warning about use of uninitialized value.
Diffstat (limited to 'Modules/cStringIO.c')
-rw-r--r-- | Modules/cStringIO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c index 0b4faa3881..385999fe38 100644 --- a/Modules/cStringIO.c +++ b/Modules/cStringIO.c @@ -173,7 +173,7 @@ IO_cread(PyObject *self, char **output, Py_ssize_t n) { static PyObject * IO_read(IOobject *self, PyObject *args) { Py_ssize_t n = -1; - char *output; + char *output = NULL; UNLESS (PyArg_ParseTuple(args, "|n:read", &n)) return NULL; |