mirror of
https://github.com/holub/mame
synced 2025-06-29 23:48:56 +03:00
chd.c: fix trivial uninitialized variable (nw)
This commit is contained in:
parent
1aed309a48
commit
b25c022e00
@ -295,7 +295,8 @@ inline UINT8 chd_file::bits_for_value(UINT64 value)
|
|||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
|
||||||
chd_file::chd_file()
|
chd_file::chd_file()
|
||||||
: m_file(NULL)
|
: m_file(NULL),
|
||||||
|
m_owns_file(false)
|
||||||
{
|
{
|
||||||
// reset state
|
// reset state
|
||||||
memset(m_decompressor, 0, sizeof(m_decompressor));
|
memset(m_decompressor, 0, sizeof(m_decompressor));
|
||||||
|
Loading…
Reference in New Issue
Block a user