Browse Source

Fix copydata_copy_file_range bug

pull/1625/head
Antonio SJ Musumeci 3 weeks ago
committed by trapexit
parent
commit
1220befacf
  1. 2
      src/fs_copydata_copy_file_range.cpp

2
src/fs_copydata_copy_file_range.cpp

@ -48,7 +48,7 @@ _copydata_copy_file_range(const int src_fd_,
case -EAGAIN:
continue;
case 0:
break;
return (count_ - nleft);
default:
if(rv < 0)
return rv;

Loading…
Cancel
Save