1
0
Fork 0

Fix a hangup in VST. (#2705)

The problem happened when the two first chunks of a VST message arrived
together on a connection that was newly switched to VST.
This commit is contained in:
Max Neunhöffer 2017-07-01 00:26:06 +02:00 committed by Frank Celler
parent c7c8910c7c
commit 82dfd5a45a
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ bool HttpCommTask::processRead(double startTime) {
_readBuffer.length() - 11);
{
MUTEX_LOCKER(locker, commTask->_lock);
commTask->processRead(startTime);
commTask->processAll();
}
commTask->start();
return false;