Kaydet (Commit) f86d1e81 authored tarafından Thomas Wouters's avatar Thomas Wouters

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

üst 54ac2949
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment