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
4140801e
Commit
4140801e
authored
Jul 20, 2008
by
Reece Dunn
Committed by
Alexandre Julliard
Jul 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Fix the vartype tests on Vista.
parent
811a809b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
vartype.c
dlls/oleaut32/tests/vartype.c
+4
-2
No files found.
dlls/oleaut32/tests/vartype.c
View file @
4140801e
...
...
@@ -5202,7 +5202,8 @@ static void test_SysReAllocString(void)
changed
=
SysReAllocString
(
&
str
,
szSmaller
);
ok
(
changed
==
1
,
"Expected 1, got %d
\n
"
,
changed
);
ok
(
str
==
oldstr
,
"Created new string
\n
"
);
/* Vista creates a new string, but older versions reuse the existing string. */
/*ok (str == oldstr, "Created new string\n");*/
bstr
=
Get
(
str
);
ok
(
bstr
->
dwLen
==
2
,
"Expected 2, got %d
\n
"
,
bstr
->
dwLen
);
ok
(
!
lstrcmpW
(
bstr
->
szString
,
szSmaller
),
"String different
\n
"
);
...
...
@@ -5241,7 +5242,8 @@ static void test_SysReAllocStringLen(void)
changed
=
SysReAllocStringLen
(
&
str
,
szSmaller
,
1
);
ok
(
changed
==
1
,
"Expected 1, got %d
\n
"
,
changed
);
ok
(
str
==
oldstr
,
"Created new string
\n
"
);
/* Vista creates a new string, but older versions reuse the existing string. */
/*ok (str == oldstr, "Created new string\n");*/
bstr
=
Get
(
str
);
ok
(
bstr
->
dwLen
==
2
,
"Expected 2, got %d
\n
"
,
bstr
->
dwLen
);
ok
(
!
lstrcmpW
(
bstr
->
szString
,
szSmaller
),
"String different
\n
"
);
...
...
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