Changes in uspace/srv/devman/drv_conn.c [f89204ee:beb83c1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/drv_conn.c
rf89204ee rbeb83c1 284 284 285 285 fun_node_t *fun = create_fun_node(); 286 /* 287 * Hold a temporary reference while we work with fun. The reference from 288 * create_fun_node() moves to the device tree. 289 */ 286 /* One reference for creation, one for us */ 287 fun_add_ref(fun); 290 288 fun_add_ref(fun); 291 289 fun->ftype = ftype; … … 302 300 fun_busy_unlock(fun); 303 301 fun_del_ref(fun); 304 fun_del_ref(fun); /* fun is destroyed */302 delete_fun_node(fun); 305 303 async_answer_0(call, ENOMEM); 306 304 return;
Note:
See TracChangeset
for help on using the changeset viewer.