Backport rev. 55783:

Patch by Tim Delany (missing DECREF). SF #1731330.
This commit is contained in:
Georg Brandl 2007-06-05 22:06:28 +00:00
parent fc41f199ba
commit c98da3d811
1 changed files with 1 additions and 0 deletions

View File

@ -243,6 +243,7 @@ PyObject* cache_display(Cache* self, PyObject* args)
}
template = PyString_FromString("%s <- %s ->%s\n");
if (!template) {
Py_DECREF(fmt_args);
return NULL;
}
display_str = PyString_Format(template, fmt_args);