Skip to content

Commit

Permalink
Merge pull request #382 from osschar/pssasync-mt-2
Browse files Browse the repository at this point in the history
Bugfix in hdfs healing mode.
  • Loading branch information
abh3 committed Jun 20, 2016
2 parents 0d9117c + eaa72a2 commit eebcab6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/XrdFileCache/XrdFileCacheIOFileBlock.cc
Expand Up @@ -117,13 +117,9 @@ void IOFileBlock::RelinquishFile(File* f)
{
if (it->second == f)
{
m_blocks.erase(it++);
m_blocks.erase(it);
break;
}
else
{
++it;
}
}
}

Expand Down

0 comments on commit eebcab6

Please sign in to comment.