lib/nfs/FileReader: convert `path` to std::string

This commit is contained in:
Max Kellermann 2024-05-16 13:39:58 +02:00
parent 131dcce0a1
commit 9e8128ecb5
2 changed files with 2 additions and 3 deletions

View File

@ -156,7 +156,7 @@ NfsFileReader::OnNfsConnectionReady() noexcept
assert(state == State::MOUNT);
try {
connection->Open(path, O_RDONLY, *this);
connection->Open(path.c_str(), O_RDONLY, *this);
} catch (...) {
OnNfsFileError(std::current_exception());
return;

View File

@ -43,8 +43,7 @@ class NfsFileReader : NfsLease, NfsCallback {
State state = State::INITIAL;
std::string server, export_name;
const char *path;
std::string server, export_name, path;
NfsConnection *connection;