Changeset e6fc486 in mainline for uspace/srv/devman/devtree.c
- Timestamp:
- 2018-11-22T16:55:28Z (7 years ago)
- Parents:
- 21d3201
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devtree.c
r21d3201 re6fc486 144 144 } 145 145 146 fun_add_ref(fun); 147 insert_fun_node(tree, fun, str_dup(""), NULL); 146 if (!insert_fun_node(tree, fun, str_dup(""), NULL)) { 147 fun_del_ref(fun); /* fun is destroyed */ 148 fibril_rwlock_write_unlock(&tree->rwlock); 149 return false; 150 } 148 151 149 152 match_id_t *id = create_match_id();
Note:
See TracChangeset
for help on using the changeset viewer.