summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 012c1b8..026fcfa 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -725,7 +725,7 @@ static PyObject*
redecode_filename(PyObject *file, const char *new_encoding,
const char *errors)
{
- PyObject *file_bytes = NULL, *new_file = NULL;
+ PyObject *file_bytes, *new_file;
file_bytes = PyUnicode_EncodeFSDefault(file);
if (file_bytes == NULL)