mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-16 17:51:42 +00:00
Optimize memory usage
This commit is contained in:
@@ -836,9 +836,12 @@ namespace CrashHandler
|
||||
CPUData *data = GetCurrentCPU();
|
||||
if (data)
|
||||
{
|
||||
if (!data->CurrentThread->Security.IsCritical)
|
||||
if (data->CurrentThread)
|
||||
{
|
||||
fixme("Exception in non-critical thread (kernel mode)");
|
||||
if (!data->CurrentThread->Security.IsCritical)
|
||||
{
|
||||
fixme("Exception in non-critical thread (kernel mode)");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user