mirror of
https://github.com/python/cpython.git
synced 2025-11-11 22:55:08 +00:00
Check return value of fstat() in _PyImport_GetDynLoadFunc()
CID 486250
This commit is contained in:
parent
58ceecfe5a
commit
27c4c3ec79
1 changed files with 3 additions and 1 deletions
|
|
@ -90,7 +90,9 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname,
|
||||||
if (fp != NULL) {
|
if (fp != NULL) {
|
||||||
int i;
|
int i;
|
||||||
struct stat statb;
|
struct stat statb;
|
||||||
fstat(fileno(fp), &statb);
|
if (fstat(fileno(fp), &statb) == -1) {
|
||||||
|
return PyErr_SetFromErrno(PyExc_IOError);
|
||||||
|
}
|
||||||
for (i = 0; i < nhandles; i++) {
|
for (i = 0; i < nhandles; i++) {
|
||||||
if (statb.st_dev == handles[i].dev &&
|
if (statb.st_dev == handles[i].dev &&
|
||||||
statb.st_ino == handles[i].ino) {
|
statb.st_ino == handles[i].ino) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue