From b063bf769d57a8eae087ffbac01990e441724467 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 26 Dec 2012 13:06:11 +0000 Subject: [PATCH] added missing initialization of memory_share.m_next (nw) --- src/emu/memory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/emu/memory.h b/src/emu/memory.h index 50dc92a319e..3c22185d2bf 100644 --- a/src/emu/memory.h +++ b/src/emu/memory.h @@ -729,7 +729,8 @@ class memory_share public: // construction/destruction memory_share(UINT8 width, size_t bytes, void *ptr = NULL) - : m_ptr(ptr), + : m_next(NULL), + m_ptr(ptr), m_bytes(bytes), m_width(width) { }