Skip to content

Commit

Permalink
[Server] Avoid SEGV when handling empty directory continuation.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Jun 17, 2019
1 parent 943a470 commit adf8a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdOuc/XrdOucStream.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ bool XrdOucStream::docontD(const char *path, XrdOucTList *tlP)
if (myInfo->fcList->size() == 0)
{delete myInfo->fcList;
myInfo->fcList = 0;
return true;
return false;
}

// All done
Expand Down

0 comments on commit adf8a0d

Please sign in to comment.