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
9e6de30f
Commit
9e6de30f
authored
Feb 10, 2011
by
Juan Lang
Committed by
Alexandre Julliard
Feb 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Don't attempt to find the length of a NULL string (valgrind).
parent
8e479f78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
12 deletions
+36
-12
encode.c
dlls/crypt32/encode.c
+36
-12
No files found.
dlls/crypt32/encode.c
View file @
9e6de30f
...
...
@@ -1012,8 +1012,12 @@ static BOOL CRYPT_AsnEncodeUTF8String(const CERT_NAME_VALUE *value,
LPCWSTR
str
=
(
LPCWSTR
)
value
->
Value
.
pbData
;
DWORD
bytesNeeded
,
lenBytes
,
encodedLen
,
strLen
;
strLen
=
value
->
Value
.
cbData
?
value
->
Value
.
cbData
/
sizeof
(
WCHAR
)
:
strlenW
(
str
);
if
(
value
->
Value
.
cbData
)
strLen
=
value
->
Value
.
cbData
/
sizeof
(
WCHAR
);
else
if
(
str
)
strLen
=
strlenW
(
str
);
else
strLen
=
0
;
encodedLen
=
WideCharToMultiByte
(
CP_UTF8
,
0
,
str
,
strLen
,
NULL
,
0
,
NULL
,
NULL
);
CRYPT_EncodeLen
(
encodedLen
,
NULL
,
&
lenBytes
);
...
...
@@ -1992,8 +1996,12 @@ static BOOL CRYPT_AsnEncodeUnicodeStringCoerce(const CERT_NAME_VALUE *value,
LPCWSTR
str
=
(
LPCWSTR
)
value
->
Value
.
pbData
;
DWORD
bytesNeeded
,
lenBytes
,
encodedLen
;
encodedLen
=
value
->
Value
.
cbData
?
value
->
Value
.
cbData
/
sizeof
(
WCHAR
)
:
strlenW
(
str
);
if
(
value
->
Value
.
cbData
)
encodedLen
=
value
->
Value
.
cbData
/
sizeof
(
WCHAR
);
else
if
(
str
)
encodedLen
=
strlenW
(
str
);
else
encodedLen
=
0
;
CRYPT_EncodeLen
(
encodedLen
,
NULL
,
&
lenBytes
);
bytesNeeded
=
1
+
lenBytes
+
encodedLen
;
if
(
!
pbEncoded
)
...
...
@@ -2025,8 +2033,12 @@ static BOOL CRYPT_AsnEncodeNumericString(const CERT_NAME_VALUE *value,
LPCWSTR
str
=
(
LPCWSTR
)
value
->
Value
.
pbData
;
DWORD
bytesNeeded
,
lenBytes
,
encodedLen
;
encodedLen
=
value
->
Value
.
cbData
?
value
->
Value
.
cbData
/
sizeof
(
WCHAR
)
:
strlenW
(
str
);
if
(
value
->
Value
.
cbData
)
encodedLen
=
value
->
Value
.
cbData
/
sizeof
(
WCHAR
);
else
if
(
str
)
encodedLen
=
strlenW
(
str
);
else
encodedLen
=
0
;
CRYPT_EncodeLen
(
encodedLen
,
NULL
,
&
lenBytes
);
bytesNeeded
=
1
+
lenBytes
+
encodedLen
;
if
(
!
pbEncoded
)
...
...
@@ -2079,8 +2091,12 @@ static BOOL CRYPT_AsnEncodePrintableString(const CERT_NAME_VALUE *value,
LPCWSTR
str
=
(
LPCWSTR
)
value
->
Value
.
pbData
;
DWORD
bytesNeeded
,
lenBytes
,
encodedLen
;
encodedLen
=
value
->
Value
.
cbData
?
value
->
Value
.
cbData
/
sizeof
(
WCHAR
)
:
strlenW
(
str
);
if
(
value
->
Value
.
cbData
)
encodedLen
=
value
->
Value
.
cbData
/
sizeof
(
WCHAR
);
else
if
(
str
)
encodedLen
=
strlenW
(
str
);
else
encodedLen
=
0
;
CRYPT_EncodeLen
(
encodedLen
,
NULL
,
&
lenBytes
);
bytesNeeded
=
1
+
lenBytes
+
encodedLen
;
if
(
!
pbEncoded
)
...
...
@@ -2126,8 +2142,12 @@ static BOOL CRYPT_AsnEncodeIA5String(const CERT_NAME_VALUE *value,
LPCWSTR
str
=
(
LPCWSTR
)
value
->
Value
.
pbData
;
DWORD
bytesNeeded
,
lenBytes
,
encodedLen
;
encodedLen
=
value
->
Value
.
cbData
?
value
->
Value
.
cbData
/
sizeof
(
WCHAR
)
:
strlenW
(
str
);
if
(
value
->
Value
.
cbData
)
encodedLen
=
value
->
Value
.
cbData
/
sizeof
(
WCHAR
);
else
if
(
str
)
encodedLen
=
strlenW
(
str
);
else
encodedLen
=
0
;
CRYPT_EncodeLen
(
encodedLen
,
NULL
,
&
lenBytes
);
bytesNeeded
=
1
+
lenBytes
+
encodedLen
;
if
(
!
pbEncoded
)
...
...
@@ -2174,8 +2194,12 @@ static BOOL CRYPT_AsnEncodeUniversalString(const CERT_NAME_VALUE *value,
DWORD
bytesNeeded
,
lenBytes
,
strLen
;
/* FIXME: doesn't handle composite characters */
strLen
=
value
->
Value
.
cbData
?
value
->
Value
.
cbData
/
sizeof
(
WCHAR
)
:
strlenW
(
str
);
if
(
value
->
Value
.
cbData
)
strLen
=
value
->
Value
.
cbData
/
sizeof
(
WCHAR
);
else
if
(
str
)
strLen
=
strlenW
(
str
);
else
strLen
=
0
;
CRYPT_EncodeLen
(
strLen
*
4
,
NULL
,
&
lenBytes
);
bytesNeeded
=
1
+
lenBytes
+
strLen
*
4
;
if
(
!
pbEncoded
)
...
...
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