]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
missed a case in r1538490:
authorEric Covener <covener@apache.org>
Sat, 21 Jun 2014 13:03:19 +0000 (13:03 +0000)
committerEric Covener <covener@apache.org>
Sat, 21 Jun 2014 13:03:19 +0000 (13:03 +0000)
commit191be1b5d660deff622276ba7dc05c19e820c4e3
tree58d557fda5a071c3f1c0465bd143d389bb7a63ee
parent83b56e81a0fab5dc63be4cd65276543509dbc0ad
missed a case in r1538490:

PR56639

Always NULL c->sbh before putting a connection back in a pollset or queue.

We can't NULL c->sbh at the bottom of process_socket() after putting a socket back on
the event_pollset or having it go into lingering close, because the listener or a worker
thread could A) continue on the connection or B) free and allocate the same conn_rec
pointer before we get to the bottom of process_socket().

Submitted By: Edward Lu
Committed By: covener

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1604350 13f79535-47bb-0310-9956-ffa450edef68
CHANGES
server/mpm/event/event.c