Changes in uspace/srv/devman/devman.c [5b08d750:4e00f87] in mainline
- File:
-
- 1 edited
-
uspace/srv/devman/devman.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devman.c
r5b08d750 r4e00f87 728 728 assert(drv != NULL); 729 729 730 free (drv->name);731 free (drv->binary_path);730 free_not_null(drv->name); 731 free_not_null(drv->binary_path); 732 732 733 733 clean_match_ids(&drv->match_ids); … … 1179 1179 1180 1180 clean_match_ids(&fun->match_ids); 1181 free (fun->name);1182 free (fun->pathname);1181 free_not_null(fun->name); 1182 free_not_null(fun->pathname); 1183 1183 free(fun); 1184 1184 }
Note:
See TracChangeset
for help on using the changeset viewer.
