Fixed using the wrong variable name

This commit is contained in:
Jerry (Xinyu Hou) 2016-09-01 14:17:34 +01:00 committed by Andrew Nelless
parent a471bdcea7
commit 16dbb7cd6a
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ ClientListener::handleClientConnecting(const Event&, void*)
// accept client connection // accept client connection
synergy::IStream* stream = m_listen->accept(); synergy::IStream* stream = m_listen->accept();
if (socket == NULL) { if (stream == NULL) {
return; return;
} }