Patch by Tim Delany (missing DECREF). SF #1731330.

This commit is contained in:
Guido van Rossum 2007-06-05 21:24:47 +00:00
parent f9a0ea8ce1
commit 956f0f71f9
1 changed files with 1 additions and 0 deletions

View File

@ -243,6 +243,7 @@ PyObject* pysqlite_cache_display(pysqlite_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);