mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[PSDK] SECURITY_ATTRIBUTES: Remove size_is(nLength) (#4832)
nLength is the size of the struct itself, not a number of descriptors.
Addendum to 1f12113
(r26428).
This commit is contained in:
parent
d8cc88ca80
commit
b5fcf9fe07
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ typedef struct _SECURITY_DESCRIPTOR {
|
|||
typedef struct _SECURITY_ATTRIBUTES
|
||||
{
|
||||
DWORD nLength;
|
||||
[size_is(nLength)] LPVOID lpSecurityDescriptor;
|
||||
LPVOID lpSecurityDescriptor;
|
||||
BOOL bInheritHandle;
|
||||
} SECURITY_ATTRIBUTES, *PSECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;
|
||||
|
||||
|
|
Loading…
Reference in a new issue