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

Merge pull request #749 from enkore/issue-748

fix to silently skipping EIO and the like #748
This commit is contained in:
TW 2016-03-15 15:07:19 +01:00
commit 347615b5e1

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;