Silence gcc (4.0.x) warning about use of uninitialized value.

This commit is contained in:
Thomas Wouters 2006-03-01 22:15:15 +00:00
parent 54ac29497e
commit f86d1e810d

View file

@ -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;