summaryrefslogtreecommitdiffstats
path: root/Python/_warnings.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-05 03:27:16 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-07-05 03:27:16 (GMT)
commitbb4a747b695a3c1cce5257f40bc764fb9b44476a (patch)
treee0826852a7feb86c2873a69af0bb12a210104f93 /Python/_warnings.c
parente2d519035f9d4702aff11cd8be68859c77a5feb2 (diff)
downloadcpython-bb4a747b695a3c1cce5257f40bc764fb9b44476a.zip
cpython-bb4a747b695a3c1cce5257f40bc764fb9b44476a.tar.gz
cpython-bb4a747b695a3c1cce5257f40bc764fb9b44476a.tar.bz2
start out this branch always with filename NULL
Diffstat (limited to 'Python/_warnings.c')
-rw-r--r--Python/_warnings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c
index 99f6071..615a2d3 100644
--- a/Python/_warnings.c
+++ b/Python/_warnings.c
@@ -517,7 +517,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
}
else {
const char *module_str = _PyUnicode_AsString(*module);
- Py_XDECREF(*filename);
+ *filename = NULL;
if (module_str == NULL)
goto handle_error;
if (strcmp(module_str, "__main__") == 0) {