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
16dc8357
Commit
16dc8357
authored
Feb 14, 2012
by
Johan Gill
Committed by
Alexandre Julliard
Feb 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: CryptCreateHash actually sets ERROR_INVALID_PARAMETER if the CSP handle is 0.
parent
454467dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
crypt.c
dlls/advapi32/crypt.c
+1
-6
crypt.c
dlls/advapi32/tests/crypt.c
+3
-0
No files found.
dlls/advapi32/crypt.c
View file @
16dc8357
...
...
@@ -720,12 +720,7 @@ BOOL WINAPI CryptCreateHash (HCRYPTPROV hProv, ALG_ID Algid, HCRYPTKEY hKey,
TRACE
(
"(0x%lx, 0x%x, 0x%lx, %08x, %p)
\n
"
,
hProv
,
Algid
,
hKey
,
dwFlags
,
phHash
);
if
(
!
prov
)
{
SetLastError
(
ERROR_INVALID_HANDLE
);
return
FALSE
;
}
if
(
!
phHash
||
prov
->
dwMagic
!=
MAGIC_CRYPTPROV
||
if
(
!
prov
||
!
phHash
||
prov
->
dwMagic
!=
MAGIC_CRYPTPROV
||
(
key
&&
key
->
dwMagic
!=
MAGIC_CRYPTKEY
))
{
SetLastError
(
ERROR_INVALID_PARAMETER
);
...
...
dlls/advapi32/tests/crypt.c
View file @
16dc8357
...
...
@@ -238,6 +238,9 @@ static void test_incorrect_api_usage(void)
if
(
!
result
)
return
;
pCryptDestroyHash
(
hHash
);
result
=
pCryptCreateHash
(
0
,
CALG_SHA
,
0
,
0
,
&
hHash
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%d
\n
"
,
GetLastError
());
result
=
pCryptGenKey
(
0
,
CALG_RC4
,
0
,
&
hKey
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%d
\n
"
,
GetLastError
());
...
...
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