Kaydet (Commit) ef86d129 authored tarafından Jesus Cea's avatar Jesus Cea

Closes #15396: memory leak in tkinter

üst 29e49d63
......@@ -120,6 +120,7 @@ docs@python.org), and we'll be glad to correct the problem.
* Thomas Lamb
* Detlef Lannert
* Piers Lauder
* Julia Lawall
* Glyph Lefkowitz
* Robert Lehmann
* Marc-André Lemburg
......
......@@ -3135,8 +3135,10 @@ PyInit__tkinter(void)
PyDict_SetItemString(d, "TkappType", (PyObject *)&Tkapp_Type);
if (PyType_Ready(&Tktt_Type) < 0)
if (PyType_Ready(&Tktt_Type) < 0) {
Py_DECREF(m);
return NULL;
}
PyDict_SetItemString(d, "TkttType", (PyObject *)&Tktt_Type);
Py_TYPE(&PyTclObject_Type) = &PyType_Type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment