Skip to content

Commit

Permalink
[SSI] Unbind the request prior to teardown.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Dec 14, 2017
1 parent f24d331 commit 417e1cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/XrdSsi/XrdSsiUtils.cc
Expand Up @@ -82,7 +82,8 @@ void DoIt() {myMutex.Lock();
virtual void Finished( XrdSsiRequest &rqstR,
const XrdSsiRespInfo &rInfo,
bool cancel=false)
{myMutex.Lock();
{UnBindRequest();
myMutex.Lock();
if (!isActive) delete this;
else {isActive = false;
myMutex.UnLock();
Expand Down

0 comments on commit 417e1cd

Please sign in to comment.