This commit is contained in:
2024-07-27 08:23:20 -05:00
parent 2a5df890f7
commit 681a3eec53
2 changed files with 3 additions and 3 deletions

View File

@ -885,7 +885,7 @@ public:
DECODE_OR_RETURN(request, handle);
data_buffer buffer;
if ((ret = this->fuse_read(path.c_str(), buffer.data(), read_size,
if ((ret = this->fuse_read(path.c_str(), &buffer, read_size,
read_offset, handle)) > 0) {
response.encode(buffer.data(), buffer.size());
}