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
64cbf292
Commit
64cbf292
authored
Feb 08, 2018
by
Hans Leidekker
Committed by
Alexandre Julliard
Feb 08, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kerberos: Simplify kerberos_SpInitLsaModeContext.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
57444692
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
krb5_ap.c
dlls/kerberos/krb5_ap.c
+1
-6
No files found.
dlls/kerberos/krb5_ap.c
View file @
64cbf292
...
...
@@ -919,17 +919,12 @@ static NTSTATUS NTAPI kerberos_SpInitLsaModeContext( LSA_SEC_HANDLE credential,
cred_handle
=
credhandle_sspi_to_gss
(
credential
);
ctxt_handle
=
ctxthandle_sspi_to_gss
(
context
);
if
(
!
input
)
input_token
.
length
=
0
;
else
{
if
((
idx
=
get_buffer_index
(
input
,
SECBUFFER_TOKEN
))
==
-
1
)
input_token
.
length
=
0
;
if
(
!
input
||
(
idx
=
get_buffer_index
(
input
,
SECBUFFER_TOKEN
))
==
-
1
)
input_token
.
length
=
0
;
else
{
input_token
.
length
=
input
->
pBuffers
[
idx
].
cbBuffer
;
input_token
.
value
=
input
->
pBuffers
[
idx
].
pvBuffer
;
}
}
if
((
idx
=
get_buffer_index
(
output
,
SECBUFFER_TOKEN
))
==
-
1
)
return
SEC_E_INVALID_TOKEN
;
output_token
.
length
=
0
;
...
...
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