diff options
| author | Steve Dower <steve.dower@python.org> | 2020-02-20 22:24:44 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-20 14:24:43 -0800 |
| commit | 6c444d0dab8f06cf304263b34beb299101cef3de (patch) | |
| tree | 063da19bcc86185bec3760a1f5f6d95129740f1e | |
| parent | 1246d892038a693304549f8574e6c2784b91589a (diff) | |
| download | cpython-git-6c444d0dab8f06cf304263b34beb299101cef3de.tar.gz | |
bpo-39184: Fix incorrect return value (GH-18580)
https://bugs.python.org/issue39184
Automerge-Triggered-By: @zooba
| -rw-r--r-- | PC/msvcrtmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c index 5c06ec2621..faceb03fba 100644 --- a/PC/msvcrtmodule.c +++ b/PC/msvcrtmodule.c @@ -180,7 +180,7 @@ msvcrt_open_osfhandle_impl(PyObject *module, void *handle, int flags) int fd; if (PySys_Audit("msvcrt.open_osfhandle", "Ki", handle, flags) < 0) { - return NULL; + return -1; } _Py_BEGIN_SUPPRESS_IPH |
