mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge remote-tracking branch 'origin/maint-0.2.1' into maint-0.2.2
This commit is contained in:
commit
a0514ba531
4
changes/bug2933
Normal file
4
changes/bug2933
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes
|
||||
- Fix an uncommon assertion failure when running with DNSPort under
|
||||
heavy load. Fixes bug 2933; bugfix on 2.0.1-alpha.
|
||||
|
@ -1904,7 +1904,7 @@ server_request_free(struct server_request *req)
|
||||
|
||||
if (req->port) {
|
||||
if (req->port->pending_replies == req) {
|
||||
if (req->next_pending)
|
||||
if (req->next_pending && req->next_pending != req)
|
||||
req->port->pending_replies = req->next_pending;
|
||||
else
|
||||
req->port->pending_replies = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user