1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 01:06:50 +00:00

Possible fix to silently skipping EIO and the like? #748

This commit is contained in:
Marian Beermann 2016-03-14 20:25:30 +01:00
parent 648761fc03
commit fbc4c0cee0

View file

@ -152,6 +152,7 @@ chunker_fill(Chunker *c)
}
else {
// some error happened
PyErr_SetFromErrno(PyExc_OSError);
return 0;
}
length = c->bytes_read - offset;