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); assert(state == State::MOUNT);
try { try {
connection->Open(path, O_RDONLY, *this); connection->Open(path.c_str(), O_RDONLY, *this);
} catch (...) { } catch (...) {
OnNfsFileError(std::current_exception()); OnNfsFileError(std::current_exception());
return; return;

View File

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