Changeset 9c4cf0d in mainline for uspace/lib/c/generic/elf/elf_mod.c
- Timestamp:
- 2017-04-02T11:24:06Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 151f1cc
- Parents:
- b19e892
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/elf/elf_mod.c
rb19e892 r9c4cf0d 108 108 rc = elf_load_module(&elf, so_bias); 109 109 110 close(ofile);110 vfs_put(ofile); 111 111 return rc; 112 112 } … … 117 117 int file = vfs_lookup(path, 0); 118 118 int rc = elf_load_file(file, so_bias, flags, info); 119 close(file);119 vfs_put(file); 120 120 return rc; 121 121 }
Note:
See TracChangeset
for help on using the changeset viewer.