diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-07-06 16:52:13 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-06 16:52:13 (GMT) |
| commit | 4981fe36c7477303de830e8dca929a02caaaffe4 (patch) | |
| tree | 9cc8650723264730f4a58ac02126c824f0f54275 /PCbuild/python.props | |
| parent | 97558d6b08a656eae209d49b206f703cee0359a2 (diff) | |
| download | cpython-4981fe36c7477303de830e8dca929a02caaaffe4.zip cpython-4981fe36c7477303de830e8dca929a02caaaffe4.tar.gz cpython-4981fe36c7477303de830e8dca929a02caaaffe4.tar.bz2 | |
bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (GH-21297)
Also enables using debug build of `python3_d.dll`
Reference: CVE-2020-15523
(cherry picked from commit dcbaa1b49cd9062fb9ba2b9d49555ac6cd8c60b5)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'PCbuild/python.props')
| -rw-r--r-- | PCbuild/python.props | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PCbuild/python.props b/PCbuild/python.props index 6388d1b..bf6f371 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -203,6 +203,8 @@ <!-- The name of the resulting pythonXY.dll (without the extension) --> <PyDllName>python$(MajorVersionNumber)$(MinorVersionNumber)$(PyDebugExt)</PyDllName> + <!-- The name of the resulting pythonX.dll (without the extension) --> + <Py3DllName>python3$(PyDebugExt)</Py3DllName> <!-- The version and platform tag to include in .pyd filenames --> <PydTag Condition="$(ArchName) == 'win32'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win32</PydTag> |
