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 051c748 commit 7d69703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythbackend/mainserver.cpp
Expand Up @@ -4835,8 +4835,8 @@ void MainServer::HandleFileTransferQuery(QStringList &slist,
.arg(recnum);
}

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

Expand Down

0 comments on commit 7d69703

Please sign in to comment.