projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a033cd2
)
fix temp file leak in sem_open on successful creation of new semaphore
author
Rich Felker
<dalias@aerifal.cx>
Thu, 27 Jun 2013 01:41:51 +0000
(21:41 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Thu, 27 Jun 2013 01:41:51 +0000
(21:41 -0400)
src/thread/sem_open.c
patch
|
blob
|
history
diff --git
a/src/thread/sem_open.c
b/src/thread/sem_open.c
index 66f12ee42000450e5b26ef56b51f11b61ad835ab..9a95d257172096f6bd933005adb1299bbecf00c9 100644
(file)
--- a/
src/thread/sem_open.c
+++ b/
src/thread/sem_open.c
@@
-123,9
+123,9
@@
sem_t *sem_open(const char *name, int flags, ...)
goto fail;
}
close(fd);
- if (link(tmp, name) == 0) break;
- e = errno;
+ e = link(tmp, name) ? errno : 0;
unlink(tmp);
+ if (!e) break;
/* Failure is only fatal when doing an exclusive open;
* otherwise, next iteration will try to open the
* existing file. */