summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-17 09:29:26 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-17 09:29:26 -0400
commitac1bf93fc634274c14d234c44b2e846a93a5cc95 (patch)
tree813c5537e823b64db9344995147c4a1be77459aa /src
parent1cc81f5cb0df2b66a795ff0c26d7bbc4d16e13c6 (diff)
downloadmusl-ac1bf93fc634274c14d234c44b2e846a93a5cc95.tar.gz
fix fd leak in file mapping code used in new zoneinfo support
Diffstat (limited to 'src')
-rw-r--r--src/time/__map_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/time/__map_file.c b/src/time/__map_file.c
index b6bf272a..b322f095 100644
--- a/src/time/__map_file.c
+++ b/src/time/__map_file.c
@@ -14,7 +14,7 @@ const char unsigned *__map_file(const char *pathname, size_t *size)
if (fd < 0) return 0;
if (!__syscall(SYS_fstat, fd, &st))
map = __mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
- __syscall(SYS_close);
+ __syscall(SYS_close, fd);
*size = st.st_size;
return map == MAP_FAILED ? 0 : map;
}