diff options
Diffstat (limited to 'testing/blind/fix-readall.patch')
-rw-r--r-- | testing/blind/fix-readall.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/testing/blind/fix-readall.patch b/testing/blind/fix-readall.patch deleted file mode 100644 index 1e5ebfdacb..0000000000 --- a/testing/blind/fix-readall.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- - src/util.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/util.c b/src/util.c -index 6c1bd0a..8967392 100644 ---- a/src/util.c -+++ b/src/util.c -@@ -136,9 +136,9 @@ readall(int fd, void *buf, size_t n) - return -1; - if (r == 0) - break; -- r += (size_t)r; -+ ptr += (size_t)r; - } -- return r; -+ return ptr; - } - - int --- -2.11.1 - |