- added missing decref

- whitespace normalization
This commit is contained in:
Just van Rossum 2002-12-31 09:51:59 +00:00
parent b456e4f25b
commit f8b6de168b
1 changed files with 5 additions and 4 deletions

View File

@ -174,6 +174,7 @@ zipimporter_dealloc(ZipImporter *self)
{
PyObject_GC_UnTrack(self);
Py_XDECREF(self->archive);
Py_XDECREF(self->prefix);
Py_XDECREF(self->files);
self->ob_type->tp_free((PyObject *)self);
}