Fix: Open files read only if requested

This commit is contained in:
Andras Elso 2017-11-21 20:35:06 +01:00
parent d4267a3ab2
commit e1a8ec56c5
1 changed files with 1 additions and 1 deletions

View File

@ -3464,7 +3464,7 @@ static FILE* OpenDiskFile(const CDiskBlockPos &pos, const char *prefix, bool fRe
return nullptr;
fs::path path = GetBlockPosFilename(pos, prefix);
fs::create_directories(path.parent_path());
FILE* file = fsbridge::fopen(path, "rb+");
FILE* file = fsbridge::fopen(path, fReadOnly ? "rb": "rb+");
if (!file && !fReadOnly)
file = fsbridge::fopen(path, "wb+");
if (!file) {