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
373178cd
Commit
373178cd
authored
Oct 17, 2013
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Fix environment tests compilation with __WINESRC__ defined.
parent
6e073179
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
environ.c
dlls/kernel32/tests/environ.c
+1
-1
No files found.
dlls/kernel32/tests/environ.c
View file @
373178cd
...
...
@@ -357,7 +357,7 @@ static void test_ExpandEnvironmentStringsA(void)
ret_size
=
ExpandEnvironmentStringsA
(
buf
,
buf1
,
sizeof
(
buf1
));
ok
(
ret_size
==
strlen
(
buf2
)
+
1
||
ret_size
==
(
strlen
(
buf2
)
+
1
)
*
2
/* NT4 */
,
"ExpandEnvironmentStrings returned %d instead of %d
\n
"
,
ret_size
,
lstrlen
(
buf2
)
+
1
);
"ExpandEnvironmentStrings returned %d instead of %d
\n
"
,
ret_size
,
lstrlen
A
(
buf2
)
+
1
);
ok
(
!
strcmp
(
buf1
,
buf2
),
"ExpandEnvironmentStrings returned [%s]
\n
"
,
buf1
);
SetEnvironmentVariableA
(
"IndirectVar"
,
NULL
);
...
...
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