summaryrefslogtreecommitdiff
path: root/Python/_warnings.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-03 22:18:34 -0500
committerBenjamin Peterson <benjamin@python.org>2011-07-03 22:18:34 -0500
commit3c35d9ef13c5347aea78e1c62da4ad31d8f3c7d7 (patch)
tree866442c34a1a6a347083c7f462d55e700f26a4da /Python/_warnings.c
parent7048f295c749275e572ee6fa1c2b8f0eee676bfa (diff)
downloadcpython-3c35d9ef13c5347aea78e1c62da4ad31d8f3c7d7.tar.gz
plug refleak
Diffstat (limited to 'Python/_warnings.c')
-rw-r--r--Python/_warnings.c1
1 files changed, 1 insertions, 0 deletions
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) {