If main() is called and an argument cannot be decoded, make sure to
free the copy of the command-line.

Found using Clang's static analyzer.
diff --git a/Modules/python.c b/Modules/python.c
index cf9383f..c70bf37 100644
--- a/Modules/python.c
+++ b/Modules/python.c
@@ -51,6 +51,7 @@
         argv_copy[i] = _Py_char2wchar(argv[i], NULL);
 #endif
         if (!argv_copy[i]) {
+            free(oldloc);
             fprintf(stderr, "Fatal Python error: "
                             "unable to decode the command line argument #%i\n",
                             i + 1);