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
90d1e947
Commit
90d1e947
authored
Dec 21, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Dec 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32/tests: Constify some character strings.
parent
4ef6d4a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cert.c
dlls/crypt32/tests/cert.c
+1
-1
encode.c
dlls/crypt32/tests/encode.c
+1
-1
No files found.
dlls/crypt32/tests/cert.c
View file @
90d1e947
...
...
@@ -351,7 +351,7 @@ static void checkHash(const BYTE *data, DWORD dataLen, ALG_ID algID,
dwSizeWithNull
,
size
);
}
static
CHAR
cspNameA
[]
=
"WineCryptTemp"
;
static
const
CHAR
cspNameA
[]
=
"WineCryptTemp"
;
static
WCHAR
cspNameW
[]
=
{
'W'
,
'i'
,
'n'
,
'e'
,
'C'
,
'r'
,
'y'
,
'p'
,
't'
,
'T'
,
'e'
,
'm'
,
'p'
,
0
};
static
const
BYTE
v1CertWithPubKey
[]
=
{
0x30
,
0x81
,
0x95
,
0x02
,
0x01
,
0x01
,
0x30
,
0x02
,
0x06
,
0x00
,
0x30
,
0x15
,
0x31
,
0x13
,
0x30
,
...
...
dlls/crypt32/tests/encode.c
View file @
90d1e947
...
...
@@ -6911,7 +6911,7 @@ static void test_decodeCMSSignerInfo(DWORD dwEncoding)
LPBYTE
buf
=
NULL
;
DWORD
size
=
0
;
CMSG_CMS_SIGNER_INFO
*
info
;
static
char
oid1
[]
=
"1.2.3"
,
oid2
[]
=
"1.5.6"
;
static
c
onst
c
har
oid1
[]
=
"1.2.3"
,
oid2
[]
=
"1.5.6"
;
/* A CMS signer can't be decoded without a serial number. */
SetLastError
(
0xdeadbeef
);
...
...
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