Skip to content

Commit

Permalink
Fix a deadlock in the socket handling causing the backend to stop res…
Browse files Browse the repository at this point in the history
…ponding to connections.
  • Loading branch information
stuartm committed Jul 21, 2011
1 parent aa89a4c commit dc0fdf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythbackend/mainserver.cpp
Expand Up @@ -4932,8 +4932,8 @@ void MainServer::HandleFileTransferQuery(QStringList &slist,
.arg(recnum);
}

SendResponse(pbssock, retlist);
sockListLock.unlock();
SendResponse(pbssock, retlist);
return;
}

Expand Down

0 comments on commit dc0fdf1

Please sign in to comment.