mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
fixups for win32 pipe management
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28747 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
739422c5aa
commit
30f0a67889
8 changed files with 190 additions and 84 deletions
|
@ -1016,7 +1016,7 @@
|
|||
fileSystemRepresentation];
|
||||
|
||||
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
|
||||
saAttr.bInheritHandle = TRUE;
|
||||
saAttr.bInheritHandle = FALSE;
|
||||
saAttr.lpSecurityDescriptor = NULL;
|
||||
|
||||
handle = CreateFileW(name,
|
||||
|
@ -1067,7 +1067,7 @@ done:
|
|||
int rc;
|
||||
|
||||
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
|
||||
saAttr.bInheritHandle = TRUE;
|
||||
saAttr.bInheritHandle = FALSE;
|
||||
saAttr.lpSecurityDescriptor = NULL;
|
||||
|
||||
/*
|
||||
|
@ -1346,7 +1346,7 @@ done:
|
|||
NSAssert(handle == INVALID_HANDLE_VALUE, NSInternalInconsistencyException);
|
||||
|
||||
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
|
||||
saAttr.bInheritHandle = TRUE;
|
||||
saAttr.bInheritHandle = FALSE;
|
||||
saAttr.lpSecurityDescriptor = NULL;
|
||||
|
||||
handle = CreateNamedPipeW([path fileSystemRepresentation],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue