Skip to content

Commit

Permalink
[Server] Avoid duplicate usage update under certain conditions.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Jun 16, 2020
1 parent 7eb908a commit 08300dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdOss/XrdOssSpace.cc
Expand Up @@ -274,7 +274,7 @@ int XrdOssSpace::Init(const char *aPath, const char *qPath, int isSOL)
}
for (i = 0; i < maxEnt; i++)
{if (*uData[i].gName != '\0')
{uDvec[fencEnt++] = i; updt = Readjust(i);}
{uDvec[fencEnt++] = i; updt |= Readjust(i);}
else if (freeEnt < 0) freeEnt = i;
}
if (freeEnt < 0) OssEroute.Emsg("Init", uFname, "is full.");
Expand Down

0 comments on commit 08300dc

Please sign in to comment.