]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
start out this branch always with filename NULL
authorBenjamin Peterson <benjamin@python.org>
Tue, 5 Jul 2011 03:27:16 +0000 (22:27 -0500)
committerBenjamin Peterson <benjamin@python.org>
Tue, 5 Jul 2011 03:27:16 +0000 (22:27 -0500)
Python/_warnings.c

index 99f6071a0c75ff896ecf985af4371cd98d89f11a..615a2d3217a034d1cae8eabd206a8ced02935a74 100644 (file)
@@ -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) {