fix: Opening files with unicode characters in their path

This commit is contained in:
WerWolv
2022-02-16 10:04:05 +01:00
parent 33a1e7f055
commit 60af9970c1
4 changed files with 35 additions and 22 deletions

View File

@@ -60,9 +60,9 @@ namespace hex::plugin::builtin::prv {
void *m_mappedFile = nullptr;
size_t m_fileSize = 0;
struct stat m_fileStats = { 0 };
bool m_fileStatsValid = false;
bool m_emptyFile = false;
struct stat m_fileStats = { 0 };
bool m_readable = false, m_writable = false;
};