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
commit9b6c60530b1f6c86f9c3e509a5ccebb2496f0c89 (patch)
treed90ec8777ed7f70fc974858fae2235053c11ec08 /Python/_warnings.c
parent65c153547ba6a41d11d3d04f84bacb5645a54e5e (diff)
downloadcpython-git-9b6c60530b1f6c86f9c3e509a5ccebb2496f0c89.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 8456796132..6d621b8f7d 100644
--- a/Python/_warnings.c
+++ b/Python/_warnings.c
@@ -514,6 +514,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
}
else {
const char *module_str = PyString_AsString(*module);
+ Py_XDECREF(*filename);
if (module_str && strcmp(module_str, "__main__") == 0) {
PyObject *argv = PySys_GetObject("argv");
if (argv != NULL && PyList_Size(argv) > 0) {