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
33abd94d
Commit
33abd94d
authored
Nov 14, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Intialise some out parameters in ProxyCliSec_QueryBlanket.
parent
288196a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
marshal.c
dlls/ole32/marshal.c
+18
-2
No files found.
dlls/ole32/marshal.c
View file @
33abd94d
...
...
@@ -511,15 +511,31 @@ static HRESULT WINAPI ProxyCliSec_QueryBlanket(IClientSecurity *iface,
IUnknown
*
pProxy
,
DWORD
*
pAuthnSvc
,
DWORD
*
pAuthzSvc
,
OLECHAR
**
pServerPrincName
,
OLECHAR
**
p
p
ServerPrincName
,
DWORD
*
pAuthnLevel
,
DWORD
*
pImpLevel
,
void
**
pAuthInfo
,
DWORD
*
pCapabilities
)
{
FIXME
(
"(%p, %p, %p, %p, %p, %p, %p, %p): stub
\n
"
,
pProxy
,
pAuthnSvc
,
pAuthzSvc
,
pServerPrincName
,
pAuthnLevel
,
pImpLevel
,
pAuthInfo
,
pAuthzSvc
,
p
p
ServerPrincName
,
pAuthnLevel
,
pImpLevel
,
pAuthInfo
,
pCapabilities
);
if
(
pAuthnSvc
)
*
pAuthnSvc
=
0
;
if
(
pAuthzSvc
)
*
pAuthzSvc
=
0
;
if
(
ppServerPrincName
)
*
ppServerPrincName
=
NULL
;
if
(
pAuthnLevel
)
*
pAuthnLevel
=
RPC_C_AUTHN_LEVEL_DEFAULT
;
if
(
pImpLevel
)
*
pImpLevel
=
RPC_C_IMP_LEVEL_DEFAULT
;
if
(
pAuthInfo
)
*
pAuthInfo
=
NULL
;
if
(
pCapabilities
)
*
pCapabilities
=
EOAC_NONE
;
return
E_NOTIMPL
;
}
...
...
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