mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 06:30:16 +00:00
Apply bug fix supplied by Greg Pettyjohn for a bug he found: '<invalid>' is not a legal path on Windows.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
310b578023
commit
943b9b6651
@ -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();
|
||||
|
@ -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…
x
Reference in New Issue
Block a user