Changeset 4f3aa76 in mainline for kernel/genarch/src/ofw/ofw_tree.c
- Timestamp:
- 2018-11-09T22:03:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ba9a150
- Parents:
- b389f95
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-11-08 01:26:04)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-11-09 22:03:24)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/ofw/ofw_tree.c
rb389f95 r4f3aa76 386 386 static void ofw_tree_node_sysinfo(ofw_tree_node_t *node, const char *path) 387 387 { 388 char *cur_path = (char *) nfmalloc(PATH_MAX_LEN); 388 char *cur_path = malloc(PATH_MAX_LEN); 389 if (!cur_path) 390 panic("Not enough memory to process OFW tree."); 389 391 390 392 for (ofw_tree_node_t *cur = node; cur; cur = cur->peer) {
Note:
See TracChangeset
for help on using the changeset viewer.