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
455e3785
Commit
455e3785
authored
Apr 21, 2021
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 21, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kerberos: Build with msvcrt.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0eb53443
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
Makefile.in
dlls/kerberos/Makefile.in
+2
-0
krb5_ap.c
dlls/kerberos/krb5_ap.c
+2
-3
No files found.
dlls/kerberos/Makefile.in
View file @
455e3785
MODULE
=
kerberos.dll
EXTRAINCL
=
$(KRB5_CFLAGS)
$(GSSAPI_CFLAGS)
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
krb5_ap.c
\
unixlib.c
dlls/kerberos/krb5_ap.c
View file @
455e3785
...
...
@@ -34,7 +34,6 @@
#include "winternl.h"
#include "wine/heap.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "unixlib.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
kerberos
);
...
...
@@ -397,8 +396,8 @@ static NTSTATUS NTAPI kerberos_SpDeleteContext( LSA_SEC_HANDLE context )
static
SecPkgInfoW
*
build_package_info
(
const
SecPkgInfoW
*
info
)
{
SecPkgInfoW
*
ret
;
DWORD
size_name
=
(
strlenW
(
info
->
Name
)
+
1
)
*
sizeof
(
WCHAR
);
DWORD
size_comment
=
(
strlenW
(
info
->
Comment
)
+
1
)
*
sizeof
(
WCHAR
);
DWORD
size_name
=
(
wcslen
(
info
->
Name
)
+
1
)
*
sizeof
(
WCHAR
);
DWORD
size_comment
=
(
wcslen
(
info
->
Comment
)
+
1
)
*
sizeof
(
WCHAR
);
if
(
!
(
ret
=
heap_alloc
(
sizeof
(
*
ret
)
+
size_name
+
size_comment
)))
return
NULL
;
ret
->
fCapabilities
=
info
->
fCapabilities
;
...
...
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