mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-09 06:19:19 +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