Skip to content

Commit

Permalink
[Proxy] Add missing initializer to avoid SEGV.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Dec 20, 2019
1 parent b32c989 commit 23aaf99
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/XrdPss/XrdPssUrlInfo.hh
Expand Up @@ -64,8 +64,9 @@ const char *Tident() {return tident;}

XrdPssUrlInfo(XrdOucEnv *envP, const char *path, const char *xtra="",
bool addusrcgi=true, bool addident=true)
: tident("unk.0:0@host"), Path(path), CgiUsr(""), CgiUsz(0),
CgiSsz(0), sidP(0) {Setup(envP, xtra, addusrcgi, addident);}
: tident("unk.0:0@host"), Path(path), CgiBuff(0),
CgiUsr(""), CgiUsz(0), CgiSsz(0), sidP(0)
{Setup(envP, xtra, addusrcgi, addident);}

XrdPssUrlInfo(const char *tid, const char *path, const char *xtra="",
bool addusrcgi=true, bool addident=true)
Expand Down

0 comments on commit 23aaf99

Please sign in to comment.