added missing initialization of memory_share.m_next (nw)

This commit is contained in:
Oliver Stöneberg 2012-12-26 13:06:11 +00:00
parent f13190914e
commit b063bf769d

View File

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