Staging
v0.8.1
https://github.com/python/cpython
Revision e8b1ba1699d429b1e80ea7d31032628d09c3e43e authored by Christian Heimes on 23 November 2013, 20:13:39 UTC, committed by Christian Heimes on 23 November 2013, 20:13:39 UTC
CID 1131946:  Unchecked return value  (CHECKED_RETURN)
1 parent 6188d09
Raw File
Tip revision: e8b1ba1699d429b1e80ea7d31032628d09c3e43e authored by Christian Heimes on 23 November 2013, 20:13:39 UTC
Issue #17810: Add two missing error checks to save_global
Tip revision: e8b1ba1
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python34_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python34.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top