Initialize inTerminatorDefined and outTerminatorDefined
This commit is contained in:
@ -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);
|
||||||
|
Reference in New Issue
Block a user