fix mmap leak in sem_open failure path for link call
authorRich Felker <dalias@aerifal.cx>
Tue, 21 Apr 2015 17:24:46 +0000 (13:24 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 21 Apr 2015 17:24:46 +0000 (13:24 -0400)
commit086793ad99dc625fd1c47f96fc31ea8aa316b438
tree2f8110253072aa9ec6f2dcedf3025dca5d11b064
parentc5ab5bd3be15eb9d49222df132a51ae8e8f78cbc
fix mmap leak in sem_open failure path for link call

the leak was found by static analysis (reported by Alexander Monakov),
not tested/observed, but seems to have occured both when failing due
to O_EXCL, and in a race condition with O_CREAT but not O_EXCL where a
semaphore by the same name was created concurrently.
src/thread/sem_open.c