forked from OSchip/llvm-project
Apply bug fix supplied by Greg Pettyjohn for a bug he found: '<invalid>' is not a legal path on Windows.
llvm-svn: 28153
This commit is contained in:
parent
7e7bcf3a54
commit
9978476c14
|
@ -39,7 +39,7 @@ ArchiveMember::getMemberSize() const {
|
|||
// This default constructor is only use by the ilist when it creates its
|
||||
// sentry node. We give it specific static values to make it stand out a bit.
|
||||
ArchiveMember::ArchiveMember()
|
||||
: next(0), prev(0), parent(0), path("<invalid>"), flags(0), data(0)
|
||||
: next(0), prev(0), parent(0), path("--invalid--"), flags(0), data(0)
|
||||
{
|
||||
info.user = sys::Process::GetCurrentUserId();
|
||||
info.group = sys::Process::GetCurrentGroupId();
|
||||
|
|
Loading…
Reference in New Issue