Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/ofw/ofw_tree.c

    r4f3aa76 rbab75df6  
    386386static void ofw_tree_node_sysinfo(ofw_tree_node_t *node, const char *path)
    387387{
    388         char *cur_path = malloc(PATH_MAX_LEN);
    389         if (!cur_path)
    390                 panic("Not enough memory to process OFW tree.");
     388        char *cur_path = (char *) nfmalloc(PATH_MAX_LEN);
    391389
    392390        for (ofw_tree_node_t *cur = node; cur; cur = cur->peer) {
Note: See TracChangeset for help on using the changeset viewer.