Skip to content

Commit

Permalink
Fix another uninitialized variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed May 24, 2016
1 parent 9d2cd98 commit 393d6d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdHttp/XrdHttpReq.cc
Expand Up @@ -664,7 +664,7 @@ void XrdHttpReq::parseResource(char *res) {
opaque = new XrdOucEnv(p + 1);

// Sanitize the resource string, removing double slashes
int pos;
int pos = 0;
do {
pos = resource.find("//", pos);
if (pos != STR_NPOS)
Expand Down

0 comments on commit 393d6d7

Please sign in to comment.