diimage.c: fix uninitialized variables found by Valgrind [R. Belmont]

This commit is contained in:
R. Belmont 2011-05-01 00:56:59 +00:00
parent 57d1459ca0
commit 656c24bb25

View File

@ -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);
}