Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1838 → Rev 1839

/trunk/kernel/generic/src/ddi/ddi.c
129,9 → 129,11
t = task_find_by_id(id);
if (!t) {
if ((!t) || (!context_check(CONTEXT, t->context))) {
/*
* There is no task with the specified ID.
* There is no task with the specified ID
* or the task belongs to a different security
* context.
*/
spinlock_unlock(&tasks_lock);
interrupts_restore(ipl);