Fix: Open files read only if requested
This commit is contained in:
parent
d4267a3ab2
commit
e1a8ec56c5
1 changed files with 1 additions and 1 deletions
|
@ -3464,7 +3464,7 @@ static FILE* OpenDiskFile(const CDiskBlockPos &pos, const char *prefix, bool fRe
|
||||||
return nullptr;
|
return nullptr;
|
||||||
fs::path path = GetBlockPosFilename(pos, prefix);
|
fs::path path = GetBlockPosFilename(pos, prefix);
|
||||||
fs::create_directories(path.parent_path());
|
fs::create_directories(path.parent_path());
|
||||||
FILE* file = fsbridge::fopen(path, "rb+");
|
FILE* file = fsbridge::fopen(path, fReadOnly ? "rb": "rb+");
|
||||||
if (!file && !fReadOnly)
|
if (!file && !fReadOnly)
|
||||||
file = fsbridge::fopen(path, "wb+");
|
file = fsbridge::fopen(path, "wb+");
|
||||||
if (!file) {
|
if (!file) {
|
||||||
|
|
Loading…
Reference in a new issue