Merge pull request #20 from s3fs-fuse/fix_bugs

Fixed a bug: issue #14, s3fs -u should return 0 if there are no lost multiparts
This commit is contained in:
Takeshi Nakatani 2014-03-04 02:02:59 +09:00
commit b35f8ded46

View File

@ -2712,7 +2712,7 @@ static bool abort_uncomp_mp_list(uncomp_mp_list_t& list)
char buff[1024];
if(0 >= list.size()){
return false;
return true;
}
memset(buff, 0, sizeof(buff));