mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
merge 3.3
This commit is contained in:
commit
26421ab302
1 changed files with 2 additions and 1 deletions
|
@ -82,7 +82,8 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname,
|
|||
int i;
|
||||
struct stat statb;
|
||||
if (fstat(fileno(fp), &statb) == -1) {
|
||||
return PyErr_SetFromErrno(PyExc_IOError);
|
||||
PyErr_SetFromErrno(PyExc_IOError);
|
||||
return NULL;
|
||||
}
|
||||
for (i = 0; i < nhandles; i++) {
|
||||
if (statb.st_dev == handles[i].dev &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue