From f86d1e810d5827c46f3d7fc519e308e310406941 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Wed, 1 Mar 2006 22:15:15 +0000 Subject: Silence gcc (4.0.x) warning about use of uninitialized value. --- Modules/cStringIO.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c index 0b4faa3..385999f 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; -- cgit v0.12