Set message identifier to null pointer in the Message paremt class as it should be set by child class. Better core early,.. Actually this fixes a strange segfault in the server version when adding the first channel

pull/127/head
f4exb 2017-12-22 17:05:36 +01:00
rodzic 3d5269dcd9
commit e444a17fe5
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -20,7 +20,7 @@
#include "util/message.h"
#include "util/messagequeue.h"
const char* Message::m_identifier = "Message";
const char* Message::m_identifier = 0;
Message::Message() :
m_destination(0)