mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-07-09 01:56:07 -04:00
Dropped local shortcut variable
This commit is contained in:
10
Msg40.cpp
10
Msg40.cpp
@ -1336,8 +1336,6 @@ bool Msg40::gotSummary ( ) {
|
||||
} //m_si->m_streamResults
|
||||
|
||||
|
||||
TcpServer *tcp = &g_httpServer.m_tcp;
|
||||
|
||||
// do we still own this socket? i am thinking it got closed somewhere
|
||||
// and the socket descriptor was re-assigned to another socket
|
||||
// getting a diffbot reply from XmLDoc::getDiffbotReply()
|
||||
@ -1369,10 +1367,10 @@ bool Msg40::gotSummary ( ) {
|
||||
// did client browser close the socket on us midstream?
|
||||
! m_socketHadError &&
|
||||
st->m_socket &&
|
||||
! tcp->sendChunk ( st->m_socket ,
|
||||
&st->m_sb,
|
||||
this ,
|
||||
doneSendingWrapper9 ) )
|
||||
! g_httpServer.m_tcp.sendChunk ( st->m_socket ,
|
||||
&st->m_sb,
|
||||
this ,
|
||||
doneSendingWrapper9 ) )
|
||||
// if it blocked, inc this count. we'll only call m_callback
|
||||
// above when m_sendsIn equals m_sendsOut... and
|
||||
// m_numReplies == m_numRequests
|
||||
|
Reference in New Issue
Block a user