2005-12-30 jrandom

* Small streaming lib bugfixes for the modified timeouts
    * Minor Syndie/Sucker RSS html fix
    * Small synchronization fix in I2PSnark (thanks fsm!)
This commit is contained in:
jrandom
2005-12-30 20:57:53 +00:00
committed by zzz
parent 5b1a6391f3
commit 8e87ae08fb
11 changed files with 47 additions and 25 deletions

View File

@ -401,7 +401,9 @@ class PeerState
// Are there outstanding requests that have to be resend?
if (resend)
{
out.sendRequests(outstandingRequests);
synchronized (this) {
out.sendRequests(outstandingRequests);
}
resend = false;
}