diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-02-21 08:44:05 -0800 |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-02-21 08:44:05 -0800 |
commit | 4b5c8edd294f02afef7407d9fd5236789bd4bc34 (patch) | |
tree | 76c1d59290ba1d2b5054441b19e3435cabf01036 /Python/dynload_shlib.c | |
parent | 4b71afb4ca019f4ae6c4ed99552cb1333bcc7325 (diff) | |
download | cpython-4b5c8edd294f02afef7407d9fd5236789bd4bc34.tar.gz |
Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows.
fstat() may fail with EOVERFLOW on files larger than 2 GB because the file size type is an signed 32-bit integer.
Diffstat (limited to 'Python/dynload_shlib.c')
-rw-r--r-- | Python/dynload_shlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c index 5cd1efdf76..659adace09 100644 --- a/Python/dynload_shlib.c +++ b/Python/dynload_shlib.c @@ -71,8 +71,8 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, if (fp != NULL) { int i; - struct stat statb; - if (fstat(fileno(fp), &statb) == -1) { + struct _Py_stat_struct statb; + if (_Py_fstat(fileno(fp), &statb) == -1) { PyErr_SetFromErrno(PyExc_IOError); return NULL; } |