From 9add3cda9de8882b78ac036ab30a3ed068ec1a73 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 15 Oct 2010 11:16:59 +0000 Subject: redecode_filename(): don't need to initialize variables --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 012c1b85f2..026fcfa8ce 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) -- cgit v1.2.1