Commit ac74f5d4 authored by Michael W. Hudson's avatar Michael W. Hudson

Initialize a variable. Hope this makes things work for Guido.

It's odd that gcc on my ibook didn't complain about this.
parent acd5cb2f
...@@ -146,7 +146,7 @@ mro_subclasses(PyTypeObject *type) ...@@ -146,7 +146,7 @@ mro_subclasses(PyTypeObject *type)
{ {
PyTypeObject *subclass; PyTypeObject *subclass;
PyObject *ref, *subclasses, *old_mro; PyObject *ref, *subclasses, *old_mro;
int i, n, r; int i, n, r = 0;
subclasses = type->tp_subclasses; subclasses = type->tp_subclasses;
if (subclasses == NULL) if (subclasses == 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