Fix leak on converter dictionary. (Ted Wright)

This commit is contained in:
adustman
2001-07-12 17:10:59 +00:00
parent c613b7a1c0
commit d5053c60e2

View File

@ -247,7 +247,6 @@ _mysql_connect(
return NULL;
if (conv) {
c->converter = conv;
Py_INCREF(conv);
} else {
if (!(c->converter = PyDict_New())) {
Py_DECREF(c);