Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
061eb12c
Commit
061eb12c
authored
Jul 20, 2010
by
Alexandre Goujon
Committed by
Alexandre Julliard
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Fix cred domain according to tests.
parent
1fbb96f8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
cred.c
dlls/advapi32/cred.c
+3
-0
cred.c
dlls/advapi32/tests/cred.c
+0
-2
No files found.
dlls/advapi32/cred.c
View file @
061eb12c
...
...
@@ -1820,6 +1820,9 @@ BOOL WINAPI CredWriteW(PCREDENTIALW Credential, DWORD Flags)
SetLastError
(
ERROR_BAD_USERNAME
);
return
FALSE
;
}
Credential
->
CredentialBlobSize
=
0
;
Credential
->
CredentialBlob
=
NULL
;
}
#ifdef __APPLE__
...
...
dlls/advapi32/tests/cred.c
View file @
061eb12c
...
...
@@ -202,9 +202,7 @@ static void check_blob(int line, DWORD cred_type, PCREDENTIALA cred)
{
if
(
cred_type
==
CRED_TYPE_DOMAIN_PASSWORD
)
{
todo_wine
ok_
(
__FILE__
,
line
)(
cred
->
CredentialBlobSize
==
0
,
"expected CredentialBlobSize of 0 but got %d
\n
"
,
cred
->
CredentialBlobSize
);
todo_wine
ok_
(
__FILE__
,
line
)(
!
cred
->
CredentialBlob
,
"expected NULL credentials but got %p
\n
"
,
cred
->
CredentialBlob
);
}
else
...
...
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