Avoid ::strcpy of uninitialized WorldContainer::m_key

This commit is contained in:
Anonymous Maarten 2026-05-15 21:00:39 +02:00
parent 7752603257
commit fe2f8be642

View File

@ -72,6 +72,7 @@ class LegoOmni : public MxOmni {
WorldContainer() WorldContainer()
{ {
m_id = e_undefined; m_id = e_undefined;
m_key[0] = '\0';
m_atomId = NULL; m_atomId = NULL;
} }