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
f73733b8
Commit
f73733b8
authored
Jul 03, 2011
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jul 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Remove dead code (Clang).
parent
b732d428
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
6 deletions
+0
-6
base64.c
dlls/crypt32/base64.c
+0
-2
chain.c
dlls/crypt32/chain.c
+0
-1
encode.c
dlls/crypt32/encode.c
+0
-1
object.c
dlls/crypt32/object.c
+0
-2
No files found.
dlls/crypt32/base64.c
View file @
f73733b8
...
...
@@ -234,7 +234,6 @@ static BOOL BinaryToBase64A(const BYTE *pbBinary,
strcpy
(
ptr
,
trailer
);
ptr
+=
strlen
(
ptr
);
strcpy
(
ptr
,
sep
);
ptr
+=
strlen
(
sep
);
}
*
pcchString
=
charsNeeded
-
1
;
}
...
...
@@ -429,7 +428,6 @@ static BOOL BinaryToBase64W(const BYTE *pbBinary,
strcpyW
(
ptr
,
trailer
);
ptr
+=
strlenW
(
ptr
);
strcpyW
(
ptr
,
sep
);
ptr
+=
strlenW
(
sep
);
}
*
pcchString
=
charsNeeded
-
1
;
}
...
...
dlls/crypt32/chain.c
View file @
f73733b8
...
...
@@ -3302,7 +3302,6 @@ static BOOL match_dns_to_subject_dn(PCCERT_CONTEXT cert, LPCWSTR server_name)
{
LPCWSTR
ptr
=
server_name
;
matches
=
TRUE
;
do
{
LPCWSTR
dot
=
strchrW
(
ptr
,
'.'
),
end
;
/* 254 is the maximum DNS label length, see RFC 1035 */
...
...
dlls/crypt32/encode.c
View file @
f73733b8
...
...
@@ -1841,7 +1841,6 @@ static BOOL WINAPI CRYPT_AsnEncodePolicyQualifierUserNotice(
CERT_NAME_VALUE
displayTextValue
;
DWORD
cItem
=
0
;
ret
=
TRUE
;
if
(
notice
->
pNoticeReference
)
{
items
[
cItem
].
encodeFunc
=
CRYPT_AsnEncodeNoticeReference
;
...
...
dlls/crypt32/object.c
View file @
f73733b8
...
...
@@ -1111,7 +1111,6 @@ static BOOL WINAPI CRYPT_FormatBasicConstraints2(DWORD dwCertEncodingType,
strcpyW
(
str
,
pathLengthHeader
);
str
+=
strlenW
(
pathLengthHeader
);
strcpyW
(
str
,
pathLength
);
str
+=
strlenW
(
pathLength
);
}
LocalFree
(
info
);
}
...
...
@@ -2468,7 +2467,6 @@ static BOOL WINAPI CRYPT_FormatSpcFinancialCriteria(DWORD dwCertEncodingType,
else
{
strcpyW
(
str
,
notAvailable
);
str
+=
strlenW
(
notAvailable
);
}
}
}
...
...
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