From: Rich Felker Date: Sun, 26 Jun 2011 20:34:05 +0000 (-0400) Subject: fix useless use of potentially-uninitialized mode variable in sem_open X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=6e53a6eca42ec40d12dced55f4840df883e2f76e fix useless use of potentially-uninitialized mode variable in sem_open --- diff --git a/src/thread/sem_open.c b/src/thread/sem_open.c index 809925d2..d8d68392 100644 --- a/src/thread/sem_open.c +++ b/src/thread/sem_open.c @@ -93,7 +93,7 @@ sem_t *sem_open(const char *name, int flags, ...) for (;;) { if (!(flags & O_EXCL)) { - fd = shm_open(name, flags&~O_CREAT, mode); + fd = shm_open(name, flags&~O_CREAT, 0); if (fd >= 0 || errno != ENOENT) { if (flags & O_CREAT) { close(dir);