Closed wmiaw closed 6 years ago
MslControl.cpp:1946 is missing a negation operator inside the conditional when checking for no new response (input stream). The correct logic, which matches the other languages, is:
MslControl.cpp:1946
if (maxMessagesHit || (newChannel && !newChannel->input()))
MslControl.cpp:1946
is missing a negation operator inside the conditional when checking for no new response (input stream). The correct logic, which matches the other languages, is:if (maxMessagesHit || (newChannel && !newChannel->input()))