mirror of
https://github.com/curl/curl.git
synced 2026-04-15 01:11:40 +03:00
Avoid gcc warning "dereferencing type-punned pointer
will break strict-aliasing rules".
This commit is contained in:
parent
e8c3bb45ba
commit
06c3bec65d
1 changed files with 3 additions and 2 deletions
|
|
@ -458,8 +458,9 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
|
|||
(PCtxtHandle,PSecBufferDesc);
|
||||
HMODULE hSecur32 = GetModuleHandle("secur32.dll");
|
||||
if (hSecur32 != NULL) {
|
||||
*((void**)&pCompleteAuthToken) =
|
||||
(void*)GetProcAddress(hSecur32, "CompleteAuthToken");
|
||||
pCompleteAuthToken =
|
||||
(SECURITY_STATUS (__stdcall *)(PCtxtHandle,PSecBufferDesc))
|
||||
GetProcAddress(hSecur32, "CompleteAuthToken");
|
||||
if( pCompleteAuthToken != NULL ) {
|
||||
pCompleteAuthToken(&ntlm->c_handle, &desc);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue