Skip to content

Commit

Permalink
[Server] Add missing initializer to avoid malloc abort.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Jun 2, 2020
1 parent 87f89a5 commit 572ca9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Xrd/XrdLinkInfo.hh
Expand Up @@ -59,7 +59,7 @@ void Reset()
KillCnt = 0;
}

XrdLinkInfo() : IOSemaphore(0, "link i/o") {Reset();}
XrdLinkInfo() : IOSemaphore(0, "link i/o"), Etext(0) {Reset();}

~XrdLinkInfo() {}
};
Expand Down

0 comments on commit 572ca9c

Please sign in to comment.