This commit is contained in:
2021-04-09 17:37:28 +02:00

View File

@ -122,12 +122,11 @@ printProtocol(FILE* file)
StreamCore* StreamCore::first = NULL; StreamCore* StreamCore::first = NULL;
StreamCore:: StreamCore::
StreamCore() : activeCommand(end) StreamCore() : StreamBusInterface::Client(),
next(), streamname(), flags(None), inTerminatorDefined(), outTerminatorDefined(),
activeCommand(end), unparsedInput()
{ {
businterface = NULL; businterface = NULL;
flags = None;
next = NULL;
unparsedInput = false;
// add myself to list of streams // add myself to list of streams
StreamCore** pstream; StreamCore** pstream;
for (pstream = &first; *pstream; pstream = &(*pstream)->next); for (pstream = &first; *pstream; pstream = &(*pstream)->next);