This commit is contained in:
Georg Brandl 2006-03-08 12:24:33 +00:00
parent 26fd2e1dcc
commit f3c4ad1410
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ _ldict(localobject *self)
return NULL;
else {
int i = PyDict_SetItem(tdict, self->key, ldict);
Py_DECREF(ldict); /* now ldict is borowed */
Py_DECREF(ldict); /* now ldict is borrowed */
if (i < 0)
return NULL;
}