1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 07:34:59 +00:00

Kernel: Remove unused variable Thread::m_userspace_stack_region

This commit is contained in:
Andreas Kling 2020-01-09 12:30:17 +01:00
parent c21f384d17
commit e23f05a157
2 changed files with 0 additions and 4 deletions

View file

@ -126,9 +126,6 @@ Thread::~Thread()
if (selector())
gdt_free_entry(selector());
if (m_userspace_stack_region)
m_process.deallocate_region(*m_userspace_stack_region);
ASSERT(m_process.m_thread_count);
m_process.m_thread_count--;
}