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
9cd2f286
Commit
9cd2f286
authored
Aug 14, 2006
by
Kai Blin
Committed by
Alexandre Julliard
Aug 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Cast helper to ULONG_PTR instead of DWORD.
parent
8289ddb0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ntlm.c
dlls/secur32/ntlm.c
+4
-4
No files found.
dlls/secur32/ntlm.c
View file @
9cd2f286
...
...
@@ -117,7 +117,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_AcquireCredentialsHandleW(
{
helper
->
mode
=
NTLM_SERVER
;
phCredential
->
dwUpper
=
fCredentialUse
;
phCredential
->
dwLower
=
(
DWORD
)
helper
;
phCredential
->
dwLower
=
(
ULONG_PTR
)
helper
;
}
ret
=
SEC_E_OK
;
break
;
...
...
@@ -229,7 +229,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_AcquireCredentialsHandleW(
}
phCredential
->
dwUpper
=
fCredentialUse
;
phCredential
->
dwLower
=
(
DWORD
)
helper
;
phCredential
->
dwLower
=
(
ULONG_PTR
)
helper
;
TRACE
(
"ACH phCredential->dwUpper: 0x%08lx, dwLower: 0x%08lx
\n
"
,
phCredential
->
dwUpper
,
phCredential
->
dwLower
);
}
...
...
@@ -632,7 +632,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
}
phNewContext
->
dwUpper
=
ctxt_attr
;
phNewContext
->
dwLower
=
(
DWORD
)
helper
;
phNewContext
->
dwLower
=
(
ULONG_PTR
)
helper
;
ret
=
SEC_E_OK
;
}
...
...
@@ -956,7 +956,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_AcceptSecurityContext(
}
phNewContext
->
dwUpper
=
ctxt_attr
;
phNewContext
->
dwLower
=
ret
;
phNewContext
->
dwLower
=
(
ULONG_PTR
)
helper
;
HeapFree
(
GetProcessHeap
(),
0
,
buffer
);
HeapFree
(
GetProcessHeap
(),
0
,
bin
);
...
...
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