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
d3afff85
Commit
d3afff85
authored
Apr 14, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Remove unused variables.
parent
1089e165
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
oid.c
dlls/crypt32/oid.c
+1
-2
store.c
dlls/crypt32/store.c
+0
-2
No files found.
dlls/crypt32/oid.c
View file @
d3afff85
...
...
@@ -938,7 +938,6 @@ BOOL WINAPI CryptRegisterDefaultOIDFunction(DWORD dwEncodingType,
{
HKEY
key
;
LPWSTR
dlls
;
LPCWSTR
existing
;
BOOL
ret
=
FALSE
;
TRACE
(
"(%x, %s, %d, %s)
\n
"
,
dwEncodingType
,
debugstr_a
(
pszFuncName
),
...
...
@@ -954,7 +953,7 @@ BOOL WINAPI CryptRegisterDefaultOIDFunction(DWORD dwEncodingType,
return
FALSE
;
dlls
=
CRYPT_GetDefaultOIDDlls
(
key
);
if
(
(
existing
=
CRYPT_FindStringInMultiString
(
dlls
,
pwszDll
)
))
if
(
CRYPT_FindStringInMultiString
(
dlls
,
pwszDll
))
SetLastError
(
ERROR_FILE_EXISTS
);
else
{
...
...
dlls/crypt32/store.c
View file @
d3afff85
...
...
@@ -291,7 +291,6 @@ static PWINECRYPT_CERTSTORE CRYPT_SysRegOpenStoreW(HCRYPTPROV hCryptProv,
PWINECRYPT_CERTSTORE
store
=
NULL
;
HKEY
root
;
LPCWSTR
base
;
BOOL
ret
;
TRACE
(
"(%ld, %08x, %s)
\n
"
,
hCryptProv
,
dwFlags
,
debugstr_w
((
LPCWSTR
)
pvPara
));
...
...
@@ -304,7 +303,6 @@ static PWINECRYPT_CERTSTORE CRYPT_SysRegOpenStoreW(HCRYPTPROV hCryptProv,
if
(
!
lstrcmpiW
(
storeName
,
rootW
))
return
CRYPT_RootOpenStore
(
hCryptProv
,
dwFlags
);
ret
=
TRUE
;
switch
(
dwFlags
&
CERT_SYSTEM_STORE_LOCATION_MASK
)
{
case
CERT_SYSTEM_STORE_LOCAL_MACHINE
:
...
...
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