]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Running a bdist_wininst installer, built with Python 2.3, installing
authorThomas Heller <theller@ctypes.org>
Thu, 3 Feb 2005 20:35:10 +0000 (20:35 +0000)
committerThomas Heller <theller@ctypes.org>
Thu, 3 Feb 2005 20:35:10 +0000 (20:35 +0000)
commit9f2e3be4e86f95b33e9e307ecf115e72ae73b5e1
treee6cb9bdb63fb82a2116d1f805bc6b05fb4a7b1b6
parent8abe7bfb2f5b231a71f9bd10d2c52680c545f87a
Running a bdist_wininst installer, built with Python 2.3, installing
for Python 2.4 caused a segfault when post_install_script was used.

The reason was that the file handle passed to PyRun_SimpleFile() was
created with MSVCRT.DLL, but Python 2.4 uses MSVCR71.DLL.

So, I replaced PyRun_SimpleFile() with PyRun_SimpleString().  The
segfault is gone, but the output of the postinstall script doesn't
show up, because still freopen() from MSVCRT is used.

Already backported.
PC/bdist_wininst/install.c