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
74682385
Commit
74682385
authored
Apr 15, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Apr 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Avoid shadowing a parameter.
parent
e4cb946c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
msg.c
dlls/crypt32/msg.c
+4
-4
No files found.
dlls/crypt32/msg.c
View file @
74682385
...
@@ -2397,16 +2397,16 @@ static BOOL CDecodeMsg_FinalizeSignedContent(CDecodeMsg *msg,
...
@@ -2397,16 +2397,16 @@ static BOOL CDecodeMsg_FinalizeSignedContent(CDecodeMsg *msg,
!
strcmp
(
msg
->
u
.
signed_data
.
info
->
content
.
pszObjId
,
!
strcmp
(
msg
->
u
.
signed_data
.
info
->
content
.
pszObjId
,
szOID_RSA_data
))
szOID_RSA_data
))
{
{
CRYPT_DATA_BLOB
*
blob
;
CRYPT_DATA_BLOB
*
rsa_
blob
;
ret
=
CryptDecodeObjectEx
(
X509_ASN_ENCODING
,
ret
=
CryptDecodeObjectEx
(
X509_ASN_ENCODING
,
X509_OCTET_STRING
,
content
->
pbData
,
content
->
cbData
,
X509_OCTET_STRING
,
content
->
pbData
,
content
->
cbData
,
CRYPT_DECODE_ALLOC_FLAG
,
NULL
,
&
blob
,
&
size
);
CRYPT_DECODE_ALLOC_FLAG
,
NULL
,
&
rsa_
blob
,
&
size
);
if
(
ret
)
if
(
ret
)
{
{
ret
=
CSignedMsgData_Update
(
&
msg
->
u
.
signed_data
,
ret
=
CSignedMsgData_Update
(
&
msg
->
u
.
signed_data
,
blob
->
pbData
,
blob
->
cbData
,
TRUE
,
Verify
);
rsa_blob
->
pbData
,
rsa_
blob
->
cbData
,
TRUE
,
Verify
);
LocalFree
(
blob
);
LocalFree
(
rsa_
blob
);
}
}
}
}
else
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