[*] NT FSStream: Added more push debug errors
This commit is contained in:
parent
c05a859638
commit
3ff5d8a74e
@ -597,6 +597,7 @@ namespace Aurora::IO::FS
|
|||||||
|
|
||||||
if (!pHandle->InitFromPath(createhandle))
|
if (!pHandle->InitFromPath(createhandle))
|
||||||
{
|
{
|
||||||
|
SysPushErrorNested();
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -352,6 +352,7 @@ namespace Aurora::IO::FS
|
|||||||
auto pStream = AuMakeShared<WinFileStream>();
|
auto pStream = AuMakeShared<WinFileStream>();
|
||||||
if (!pStream)
|
if (!pStream)
|
||||||
{
|
{
|
||||||
|
SysPushErrorMemory();
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -382,12 +383,14 @@ namespace Aurora::IO::FS
|
|||||||
|
|
||||||
if (!pHandle->InitFromPath(createhandle))
|
if (!pHandle->InitFromPath(createhandle))
|
||||||
{
|
{
|
||||||
|
SysPushErrorNested();
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto pStream = _new WinFileStream();
|
auto pStream = _new WinFileStream();
|
||||||
if (!pStream)
|
if (!pStream)
|
||||||
{
|
{
|
||||||
|
SysPushErrorMemory();
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user