Skip to content

Commit

Permalink
[XrdSsi] fix: error: 'this' pointer is null.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmichal committed Mar 1, 2021
1 parent 9c79f38 commit 616eb9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdSsi/XrdSsiDir.cc
Expand Up @@ -199,7 +199,7 @@ const char *XrdSsiDir::FName()

// Check if this directory is actually open
//
if (!dirP) return dirP->FName();
if (dirP) return dirP->FName();
XrdSsiUtils::Emsg(epname, EBADF, epname, "???", error);
return "";
}

0 comments on commit 616eb9b

Please sign in to comment.