Move declaration of enc to scope where it is used

This commit is contained in:
Neal Norwitz 2003-04-10 21:53:14 +00:00
parent 4efd91713b
commit 5c16c7b014
1 changed files with 1 additions and 2 deletions

View File

@ -190,11 +190,10 @@ Py_Initialize(void)
if (!Py_FileSystemDefaultEncoding) {
char *saved_locale = setlocale(LC_CTYPE, NULL);
char *codeset;
PyObject *enc = NULL;
setlocale(LC_CTYPE, "");
codeset = nl_langinfo(CODESET);
if (*codeset) {
enc = PyCodec_Encoder(codeset);
PyObject *enc = PyCodec_Encoder(codeset);
if (enc) {
Py_FileSystemDefaultEncoding = strdup(codeset);
Py_DECREF(enc);