From a55007a620792a6dff946ee04b1295689e70b616 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 3 Jul 2011 22:18:34 -0500 Subject: plug refleak --- Python/_warnings.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/_warnings.c') diff --git a/Python/_warnings.c b/Python/_warnings.c index 07fd683e53..99f6071a0c 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -517,6 +517,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno, } else { const char *module_str = _PyUnicode_AsString(*module); + Py_XDECREF(*filename); if (module_str == NULL) goto handle_error; if (strcmp(module_str, "__main__") == 0) { -- cgit v1.2.1