diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-06-02 12:33:47 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-06-02 12:33:47 (GMT) |
commit | 7cd068baab4f21bb252ca7e528f57a8eaffa7738 (patch) | |
tree | dd81c6161d4d511e72e4e19b758d6facfdc87a3f /Python/pythonrun.c | |
parent | 704d8b154b23dfc2fdf5a378e31636ba1a6e2d22 (diff) | |
download | cpython-7cd068baab4f21bb252ca7e528f57a8eaffa7738.zip cpython-7cd068baab4f21bb252ca7e528f57a8eaffa7738.tar.gz cpython-7cd068baab4f21bb252ca7e528f57a8eaffa7738.tar.bz2 |
Fix uninitialized variable access, release memory.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index f2f14ed..7fe4cce 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -732,6 +732,7 @@ initstdio(void) } encoding = Py_GETENV("PYTHONIOENCODING"); + errors = NULL; if (encoding) { encoding = strdup(encoding); errors = strchr(encoding, ':'); @@ -825,6 +826,8 @@ initstdio(void) status = -1; } + if (encoding) + free(encoding); Py_XDECREF(bimod); Py_XDECREF(iomod); return status; |