mirror of
https://github.com/holub/mame
synced 2025-05-19 12:18:56 +03:00
diimage.c: fix uninitialized variables found by Valgrind [R. Belmont]
This commit is contained in:
parent
57d1459ca0
commit
656c24bb25
@ -90,7 +90,9 @@ device_image_interface::device_image_interface(const machine_config &mconfig, de
|
||||
m_mame_file(NULL),
|
||||
m_full_software_name(NULL),
|
||||
m_software_info_ptr(NULL),
|
||||
m_software_part_ptr(NULL)
|
||||
m_software_part_ptr(NULL),
|
||||
m_writeable(false),
|
||||
m_created(false)
|
||||
{
|
||||
m_mempool = pool_alloc_lib(memory_error);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user