* fhandler_disk_file.cc (fhandler_disk_file::mkdir): Drop fattr variable

and use FILE_ATTRIBUTE_DIRECTORY directly in call to NtCreateFile.
	* posix_ipc.cc (ipc_mutex_init): Fix format string when creating IPC
	object name.
	(ipc_cond_init): Ditto.
	* security.cc (alloc_sd): Add parentheses to fix setting initial
	owner_allow value.
This commit is contained in:
Corinna Vinschen
2008-08-19 09:46:31 +00:00
parent 46c6def37f
commit ec8a7e416f
4 changed files with 16 additions and 6 deletions

View File

@ -90,7 +90,7 @@ ipc_mutex_init (HANDLE *pmtx, const char *name)
char buf[MAX_PATH];
SECURITY_ATTRIBUTES sa = sec_none;
__small_sprintf (buf, "mqueue/mtx_%W", name);
__small_sprintf (buf, "mqueue/mtx_%s", name);
sa.lpSecurityDescriptor = everyone_sd (CYG_MUTANT_ACCESS);
*pmtx = CreateMutex (&sa, FALSE, buf);
if (!*pmtx)
@ -135,7 +135,7 @@ ipc_cond_init (HANDLE *pevt, const char *name)
char buf[MAX_PATH];
SECURITY_ATTRIBUTES sa = sec_none;
__small_sprintf (buf, "mqueue/evt_%W", name);
__small_sprintf (buf, "mqueue/evt_%s", name);
sa.lpSecurityDescriptor = everyone_sd (CYG_EVENT_ACCESS);
*pevt = CreateEvent (&sa, TRUE, FALSE, buf);
if (!*pevt)