thread: fixed bug where result of __NextThread was not being properly checked when NULL

This commit is contained in:
bunnei 2014-05-21 21:42:18 -04:00
parent 06e3c3d55a
commit 6a78be5930

View file

@ -194,7 +194,7 @@ Thread* __NextThread() {
} else { } else {
next = g_thread_ready_queue.pop_first(); next = g_thread_ready_queue.pop_first();
} }
if (next < 0) { if (next == 0) {
return NULL; return NULL;
} }
return Kernel::g_object_pool.GetFast<Thread>(next); return Kernel::g_object_pool.GetFast<Thread>(next);