fuse_getattr.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-02-13 20:06:05 -06:00
parent bcad5ccf78
commit de32d6e985

View File

@ -114,7 +114,8 @@ namespace l
if(rv == -1)
return -errno;
i = cache.insert({fusepath_,basepaths[0]});
auto rv = cache.insert({fusepath_,basepaths[0]});
i = rv.first;
}
fullpath = fs::path::make(i->second,fusepath_);