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
8f2b4794
Commit
8f2b4794
authored
Nov 08, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Don't call PropVariantClear on uninitialized variants.
parent
ab9fd793
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
suminfo.c
dlls/msi/tests/suminfo.c
+0
-8
No files found.
dlls/msi/tests/suminfo.c
View file @
8f2b4794
...
...
@@ -299,50 +299,42 @@ static void test_create_database_binary(void)
r
=
IPropertyStorage_SetClass
(
ps
,
&
FMTID_SummaryInformation
);
ok
(
r
==
S_OK
,
"failed to set class
\n
"
);
PropVariantClear
(
&
propvar
[
0
]
);
propspec
[
0
].
ulKind
=
PRSPEC_PROPID
;
U
(
propspec
[
0
]).
propid
=
PID_TITLE
;
propvar
[
0
].
vt
=
VT_LPSTR
;
U
(
propvar
[
0
]).
pszVal
=
LOSE_CONST
(
"test title"
);
PropVariantClear
(
&
propvar
[
1
]
);
propspec
[
1
].
ulKind
=
PRSPEC_PROPID
;
U
(
propspec
[
1
]).
propid
=
PID_SUBJECT
;
propvar
[
1
].
vt
=
VT_LPSTR
;
U
(
propvar
[
1
]).
pszVal
=
LOSE_CONST
(
"msi suminfo / property storage test"
);
PropVariantClear
(
&
propvar
[
2
]
);
propspec
[
2
].
ulKind
=
PRSPEC_PROPID
;
U
(
propspec
[
2
]).
propid
=
PID_AUTHOR
;
propvar
[
2
].
vt
=
VT_LPSTR
;
U
(
propvar
[
2
]).
pszVal
=
LOSE_CONST
(
"mike_m"
);
PropVariantClear
(
&
propvar
[
3
]
);
propspec
[
3
].
ulKind
=
PRSPEC_PROPID
;
U
(
propspec
[
3
]).
propid
=
PID_TEMPLATE
;
propvar
[
3
].
vt
=
VT_LPSTR
;
U
(
propvar
[
3
]).
pszVal
=
LOSE_CONST
(
";1033"
);
/* actually the string table's codepage */
PropVariantClear
(
&
propvar
[
4
]
);
propspec
[
4
].
ulKind
=
PRSPEC_PROPID
;
U
(
propspec
[
4
]).
propid
=
PID_REVNUMBER
;
propvar
[
4
].
vt
=
VT_LPSTR
;
U
(
propvar
[
4
]).
pszVal
=
LOSE_CONST
(
"{913B8D18-FBB6-4CAC-A239-C74C11E3FA74}"
);
PropVariantClear
(
&
propvar
[
5
]
);
propspec
[
5
].
ulKind
=
PRSPEC_PROPID
;
U
(
propspec
[
5
]).
propid
=
PID_PAGECOUNT
;
propvar
[
5
].
vt
=
VT_I4
;
U
(
propvar
[
5
]).
lVal
=
100
;
PropVariantClear
(
&
propvar
[
6
]
);
propspec
[
6
].
ulKind
=
PRSPEC_PROPID
;
U
(
propspec
[
6
]).
propid
=
PID_WORDCOUNT
;
propvar
[
6
].
vt
=
VT_I4
;
U
(
propvar
[
6
]).
lVal
=
0
;
/* MSDN says that PID_LASTPRINTED should be a VT_FILETIME... */
PropVariantClear
(
&
propvar
[
7
]
);
propspec
[
7
].
ulKind
=
PRSPEC_PROPID
;
U
(
propspec
[
7
]).
propid
=
PID_LASTPRINTED
;
propvar
[
7
].
vt
=
VT_LPSTR
;
...
...
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