Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e97a1afb
Commit
e97a1afb
authored
Mar 28, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Fixed compiler warnings.
parent
ae8b835d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
security.c
dlls/advapi32/security.c
+1
-1
security.c
dlls/advapi32/tests/security.c
+1
-2
No files found.
dlls/advapi32/security.c
View file @
e97a1afb
...
...
@@ -2093,7 +2093,7 @@ VOID WINAPI BuildTrusteeWithObjectsAndNameA( PTRUSTEEA pTrustee, POBJECTS_AND_NA
pTrustee
->
MultipleTrusteeOperation
=
NO_MULTIPLE_TRUSTEE
;
pTrustee
->
TrusteeForm
=
TRUSTEE_IS_OBJECTS_AND_NAME
;
pTrustee
->
TrusteeType
=
TRUSTEE_IS_UNKNOWN
;
pTrustee
->
ptstrName
=
pObjName
;
pTrustee
->
ptstrName
=
(
LPSTR
)
pObjName
;
}
/******************************************************************************
...
...
dlls/advapi32/tests/security.c
View file @
e97a1afb
...
...
@@ -173,11 +173,10 @@ static void test_trustee(void)
char
szObjectTypeName
[]
=
"ObjectTypeName"
;
char
szInheritedObjectTypeName
[]
=
"InheritedObjectTypeName"
;
char
szTrusteeName
[]
=
"szTrusteeName"
;
SID_IDENTIFIER_AUTHORITY
auth
=
{
{
0x11
,
0x22
,
0
,
0
,
0
,
0
}
};
memset
(
&
ZeroGuid
,
0x00
,
sizeof
(
ZeroGuid
)
);
SID_IDENTIFIER_AUTHORITY
auth
=
{
{
0x11
,
0x22
,
0
,
0
,
0
,
0
}
};
pBuildTrusteeWithSidA
=
(
fnBuildTrusteeWithSidA
)
GetProcAddress
(
hmod
,
"BuildTrusteeWithSidA"
);
pBuildTrusteeWithNameA
=
(
fnBuildTrusteeWithNameA
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment