Changeset 029d94a in mainline


Ignore:
Timestamp:
2009-09-04T18:03:27Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5bda2f3e
Parents:
d044447
Message:

check for NULL

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/task.c

    rd044447 r029d94a  
    143143       
    144144        ta = (task_t *) malloc(sizeof(task_t), 0);
     145        if (!ta)
     146                return NULL;
    145147
    146148        task_create_arch(ta);
Note: See TracChangeset for help on using the changeset viewer.