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
b856884c
Commit
b856884c
authored
Jun 05, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Remove wrong "is NULL and error out" code (coccicheck).
parent
cd22aa18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
crypt.c
dlls/advapi32/crypt.c
+0
-5
crypt.c
dlls/advapi32/tests/crypt.c
+3
-0
No files found.
dlls/advapi32/crypt.c
View file @
b856884c
...
...
@@ -1420,11 +1420,6 @@ BOOL WINAPI CryptGenKey (HCRYPTPROV hProv, ALG_ID Algid, DWORD dwFlags, HCRYPTKE
TRACE
(
"(0x%lx, %d, %08x, %p)
\n
"
,
hProv
,
Algid
,
dwFlags
,
phKey
);
if
(
!
prov
)
{
SetLastError
(
ERROR_INVALID_HANDLE
);
return
FALSE
;
}
if
(
!
phKey
||
!
prov
||
prov
->
dwMagic
!=
MAGIC_CRYPTPROV
)
{
SetLastError
(
ERROR_INVALID_PARAMETER
);
...
...
dlls/advapi32/tests/crypt.c
View file @
b856884c
...
...
@@ -238,6 +238,9 @@ static void test_incorrect_api_usage(void)
if
(
!
result
)
return
;
pCryptDestroyHash
(
hHash
);
result
=
pCryptGenKey
(
0
,
CALG_RC4
,
0
,
&
hKey
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%d
\n
"
,
GetLastError
());
result
=
pCryptGenKey
(
hProv
,
CALG_RC4
,
0
,
&
hKey
);
ok
(
result
,
"%d
\n
"
,
GetLastError
());
if
(
!
result
)
return
;
...
...
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