Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a6087662
Commit
a6087662
authored
May 25, 2008
by
Michael Karcher
Committed by
Alexandre Julliard
May 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Fix integer overflow.
parent
98e24241
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
encode.c
dlls/crypt32/encode.c
+3
-4
No files found.
dlls/crypt32/encode.c
View file @
a6087662
...
...
@@ -2540,8 +2540,8 @@ static BOOL WINAPI CRYPT_AsnEncodeInteger(DWORD dwCertEncodingType,
__TRY
{
DWORD
significantBytes
,
lenBytes
;
BYTE
padByte
=
0
,
bytesNeeded
;
DWORD
significantBytes
,
lenBytes
,
bytesNeeded
;
BYTE
padByte
=
0
;
BOOL
pad
=
FALSE
;
const
CRYPT_INTEGER_BLOB
*
blob
=
(
const
CRYPT_INTEGER_BLOB
*
)
pvStructInfo
;
...
...
@@ -2629,8 +2629,7 @@ static BOOL WINAPI CRYPT_AsnEncodeUnsignedInteger(DWORD dwCertEncodingType,
__TRY
{
DWORD
significantBytes
,
lenBytes
;
BYTE
bytesNeeded
;
DWORD
significantBytes
,
lenBytes
,
bytesNeeded
;
BOOL
pad
=
FALSE
;
const
CRYPT_INTEGER_BLOB
*
blob
=
(
const
CRYPT_INTEGER_BLOB
*
)
pvStructInfo
;
...
...
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