1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-26 09:48:45 -05:00

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

This commit is contained in:
f4exb 2017-12-22 17:05:36 +01:00
parent 3d5269dcd9
commit e444a17fe5

View File

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