mirror of https://github.com/libAthena/athena.git
MemoryWriter: Use a std::unique_ptr for FILE handle in save()
Prevents potential leaks from occurring within failure cases (e.g. with the default exception handler).
This commit is contained in:
parent
781937da88
commit
4e414902be
|
@ -185,11 +185,11 @@ void MemoryWriter::save(std::string_view filename) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!filename.empty())
|
if (!filename.empty()) {
|
||||||
m_filepath = filename;
|
m_filepath = filename;
|
||||||
|
}
|
||||||
|
|
||||||
FILE* out = fopen(m_filepath.c_str(), "wb");
|
std::unique_ptr<FILE, decltype(&std::fclose)> out{std::fopen(m_filepath.c_str(), "wb"), std::fclose};
|
||||||
|
|
||||||
if (!out) {
|
if (!out) {
|
||||||
atError(fmt("Unable to open file '{}'"), m_filepath);
|
atError(fmt("Unable to open file '{}'"), m_filepath);
|
||||||
setError();
|
setError();
|
||||||
|
@ -200,22 +200,24 @@ void MemoryWriter::save(std::string_view filename) {
|
||||||
atUint64 blocksize = BLOCKSZ;
|
atUint64 blocksize = BLOCKSZ;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (blocksize > m_length - done)
|
if (blocksize > m_length - done) {
|
||||||
blocksize = m_length - done;
|
blocksize = m_length - done;
|
||||||
|
}
|
||||||
|
|
||||||
atInt64 ret = fwrite(m_data + done, 1, blocksize, out);
|
const atInt64 ret = std::fwrite(m_data + done, 1, blocksize, out.get());
|
||||||
|
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
atError(fmt("Error writing data to disk"));
|
atError(fmt("Error writing data to disk"));
|
||||||
setError();
|
setError();
|
||||||
return;
|
return;
|
||||||
} else if (ret == 0)
|
}
|
||||||
|
|
||||||
|
if (ret == 0) {
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
done += blocksize;
|
done += blocksize;
|
||||||
} while (done < m_length);
|
} while (done < m_length);
|
||||||
|
|
||||||
fclose(out);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MemoryWriter::writeUBytes(const atUint8* data, atUint64 length) {
|
void MemoryWriter::writeUBytes(const atUint8* data, atUint64 length) {
|
||||||
|
|
Loading…
Reference in New Issue