kccowan
11-02-2012, 12:05
Dashboard::AddString has a bug. It take the address of the address of the string.
memcpy(m_packPtr, (char*)&value, length);
should be
memcpy(m_packPtr, value, length);
KC
memcpy(m_packPtr, (char*)&value, length);
should be
memcpy(m_packPtr, value, length);
KC