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
3e9b7b59
Commit
3e9b7b59
authored
Dec 19, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Dec 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32/tests: Constify some character strings.
parent
120dac41
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
cred.c
dlls/advapi32/tests/cred.c
+2
-2
registry.c
dlls/advapi32/tests/registry.c
+1
-1
No files found.
dlls/advapi32/tests/cred.c
View file @
3e9b7b59
...
...
@@ -563,8 +563,8 @@ static void test_CredMarshalCredentialA(void)
static
void
test_CredUnmarshalCredentialA
(
void
)
{
static
WCHAR
tW
[]
=
{
't'
,
0
};
static
WCHAR
testW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
0
};
static
const
WCHAR
tW
[]
=
{
't'
,
0
};
static
const
WCHAR
testW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
0
};
CERT_CREDENTIAL_INFO
*
cert
;
USERNAME_TARGET_CREDENTIAL_INFO
*
username
;
CRED_MARSHAL_TYPE
type
;
...
...
dlls/advapi32/tests/registry.c
View file @
3e9b7b59
...
...
@@ -1665,7 +1665,7 @@ static void test_rw_order(void)
{
HKEY
hKey
;
DWORD
dw
=
0
;
static
char
keyname
[]
=
"test_rw_order"
;
static
c
onst
c
har
keyname
[]
=
"test_rw_order"
;
char
value_buf
[
2
];
DWORD
values
,
value_len
,
value_name_max_len
;
LSTATUS
ret
;
...
...
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