Skip to content

Commit 4f49b41

Browse files
committed
Consume return code from get_object_attribute.
1 parent 3d3f111 commit 4f49b41

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/s3fs.cpp

+7-4
Original file line numberDiff line numberDiff line change
@@ -732,11 +732,12 @@ int put_headers(const char* path, headers_t& meta, bool is_copy, bool use_st_siz
732732
S3FS_PRN_INFO2("[path=%s]", path);
733733

734734
// files larger than 5GB must be modified via the multipart interface
735-
// *** If there is not target object(a case of move command),
736-
// get_object_attribute() returns error with initializing buf.
735+
// call use_st_size as false when the file does not exist(ex. rename object)
737736
if(use_st_size){
738737
struct stat buf;
739-
(void)get_object_attribute(path, &buf);
738+
if(0 != (result = get_object_attribute(path, &buf))){
739+
return result;
740+
}
740741
size = buf.st_size;
741742
}else{
742743
size = get_size(meta);
@@ -2302,7 +2303,9 @@ static int s3fs_open(const char* _path, struct fuse_file_info* fi)
23022303
AutoFdEntity autoent;
23032304
FdEntity* ent;
23042305
headers_t meta;
2305-
get_object_attribute(path, NULL, &meta, true, NULL, true); // no truncate cache
2306+
if(0 != (result = get_object_attribute(path, NULL, &meta, true, NULL, true))){ // no truncate cache
2307+
return result;
2308+
}
23062309
if(NULL == (ent = autoent.Open(path, &meta, st.st_size, st.st_mtime, fi->flags, false, true, false, AutoLock::NONE))){
23072310
StatCache::getStatCacheData()->DelStat(path);
23082311
return -EIO;

0 commit comments

Comments
 (0)