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
6f959a91
Commit
6f959a91
authored
Nov 13, 2014
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 13, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Simplify the check for an empty string (PVS-Studio).
parent
8fd7c73a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
vartest.c
dlls/oleaut32/tests/vartest.c
+2
-4
No files found.
dlls/oleaut32/tests/vartest.c
View file @
6f959a91
...
...
@@ -295,16 +295,14 @@ static void init(void)
HRESULT
res
;
res
=
VarBstrFromBool
(
VARIANT_TRUE
,
LANG_USER_DEFAULT
,
VAR_LOCALBOOL
,
&
bstr
);
ok
(
res
==
S_OK
&&
(
lstrlenW
(
bstr
)
>
0
),
"Expected localized string for 'True'
\n
"
);
ok
(
res
==
S_OK
&&
bstr
[
0
],
"Expected localized string for 'True'
\n
"
);
/* lstrcpyW / lstrcatW do not work on win95 */
memcpy
(
sz12_true
,
sz12
,
sizeof
(
sz12
));
if
(
bstr
)
memcpy
(
&
sz12_true
[
2
],
bstr
,
SysStringByteLen
(
bstr
)
+
sizeof
(
WCHAR
));
SysFreeString
(
bstr
);
res
=
VarBstrFromBool
(
VARIANT_FALSE
,
LANG_USER_DEFAULT
,
VAR_LOCALBOOL
,
&
bstr
);
ok
(
res
==
S_OK
&&
(
lstrlenW
(
bstr
)
>
0
),
"Expected localized string for 'False'
\n
"
);
ok
(
res
==
S_OK
&&
bstr
[
0
],
"Expected localized string for 'False'
\n
"
);
memcpy
(
sz12_false
,
sz12
,
sizeof
(
sz12
));
if
(
bstr
)
memcpy
(
&
sz12_false
[
2
],
bstr
,
SysStringByteLen
(
bstr
)
+
sizeof
(
WCHAR
));
SysFreeString
(
bstr
);
...
...
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