mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
IOFile: Correct explicit operator bool semantics
The operator void* variant was m_good ? m_file : nullptr; so this was leaving out the file handle check.
This commit is contained in:
@ -211,7 +211,7 @@ public:
|
|||||||
bool IsOpen() const { return nullptr != m_file; }
|
bool IsOpen() const { return nullptr != m_file; }
|
||||||
// m_good is set to false when a read, write or other function fails
|
// m_good is set to false when a read, write or other function fails
|
||||||
bool IsGood() const { return m_good; }
|
bool IsGood() const { return m_good; }
|
||||||
explicit operator bool() const { return IsGood(); }
|
explicit operator bool() const { return IsGood() && IsOpen(); }
|
||||||
std::FILE* ReleaseHandle();
|
std::FILE* ReleaseHandle();
|
||||||
|
|
||||||
std::FILE* GetHandle() { return m_file; }
|
std::FILE* GetHandle() { return m_file; }
|
||||||
|
Reference in New Issue
Block a user