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
7932d76a
Commit
7932d76a
authored
Apr 20, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix loading of the summary information.
parent
3b5875e3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
31 deletions
+33
-31
suminfo.c
dlls/msi/suminfo.c
+33
-31
No files found.
dlls/msi/suminfo.c
View file @
7932d76a
...
...
@@ -37,7 +37,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msi
);
#define MSI_MAX_PROPS
19
#define MSI_MAX_PROPS
20
#include "pshpack1.h"
...
...
@@ -79,6 +79,8 @@ typedef struct {
#include "poppack.h"
#define SECT_HDR_SIZE (sizeof(PROPERTYSECTIONHEADER))
typedef
struct
{
BOOL
unicode
;
union
{
...
...
@@ -160,17 +162,21 @@ static UINT get_property_count( PROPVARIANT *property )
}
/* FIXME: doesn't deal with endian conversion */
static
void
read_properties_from_data
(
PROPVARIANT
*
prop
,
PROPERTYIDOFFSET
*
idofs
,
DWORD
count
,
LPBYTE
data
,
DWORD
sz
)
static
void
read_properties_from_data
(
PROPVARIANT
*
prop
,
LPBYTE
data
,
DWORD
sz
)
{
UINT
type
;
DWORD
i
;
int
size
;
PROPERTY_DATA
*
propdata
;
PROPVARIANT
*
property
;
PROPERTYIDOFFSET
*
idofs
;
PROPERTYSECTIONHEADER
*
section_hdr
;
section_hdr
=
(
PROPERTYSECTIONHEADER
*
)
&
data
[
0
];
idofs
=
(
PROPERTYIDOFFSET
*
)
&
data
[
SECT_HDR_SIZE
];
/* now set all the properties */
for
(
i
=
0
;
i
<
count
;
i
++
)
for
(
i
=
0
;
i
<
section_hdr
->
cProperties
;
i
++
)
{
type
=
get_type
(
idofs
[
i
].
propid
);
if
(
type
==
VT_EMPTY
)
...
...
@@ -179,12 +185,12 @@ static void read_properties_from_data( PROPVARIANT *prop,
break
;
}
propdata
=
(
PROPERTY_DATA
*
)
&
data
[
idofs
[
i
].
dwOffset
];
propdata
=
(
PROPERTY_DATA
*
)
&
data
[
idofs
[
i
].
dwOffset
];
/* check the type is the same as we expect */
if
(
type
!=
propdata
->
type
)
{
ERR
(
"wrong type
\n
"
);
ERR
(
"wrong type
%d != %ld
\n
"
,
type
,
propdata
->
type
);
break
;
}
...
...
@@ -198,6 +204,12 @@ static void read_properties_from_data( PROPVARIANT *prop,
break
;
}
if
(
idofs
[
i
].
propid
>=
MSI_MAX_PROPS
)
{
ERR
(
"Unknown property ID %ld
\n
"
,
idofs
[
i
].
propid
);
break
;
}
property
=
&
prop
[
idofs
[
i
].
propid
];
property
->
vt
=
type
;
...
...
@@ -223,7 +235,6 @@ static UINT load_summary_info( MSISUMMARYINFO *si, IStream *stm )
PROPERTYSETHEADER
set_hdr
;
FORMATIDOFFSET
format_hdr
;
PROPERTYSECTIONHEADER
section_hdr
;
PROPERTYIDOFFSET
idofs
[
MSI_MAX_PROPS
];
LPBYTE
data
=
NULL
;
LARGE_INTEGER
ofs
;
ULONG
count
,
sz
;
...
...
@@ -259,7 +270,7 @@ static UINT load_summary_info( MSISUMMARYINFO *si, IStream *stm )
return
ret
;
/* read the section itself */
sz
=
sizeof
section_hdr
;
sz
=
SECT_HDR_SIZE
;
r
=
IStream_Read
(
stm
,
&
section_hdr
,
sz
,
&
count
);
if
(
FAILED
(
r
)
||
count
!=
sz
)
return
ret
;
...
...
@@ -270,23 +281,19 @@ static UINT load_summary_info( MSISUMMARYINFO *si, IStream *stm )
return
ret
;
}
/* read the offsets */
sz
=
sizeof
idofs
[
0
]
*
section_hdr
.
cProperties
;
r
=
IStream_Read
(
stm
,
idofs
,
sz
,
&
count
);
if
(
FAILED
(
r
)
||
count
!=
sz
)
data
=
HeapAlloc
(
GetProcessHeap
(),
0
,
section_hdr
.
cbSection
);
if
(
!
data
)
return
ret
;
memcpy
(
data
,
&
section_hdr
,
SECT_HDR_SIZE
);
/* read all the data in one go */
sz
=
section_hdr
.
cbSection
;
data
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sz
);
if
(
!
data
)
return
ret
;
r
=
IStream_Read
(
stm
,
data
,
sz
,
&
count
);
sz
=
section_hdr
.
cbSection
-
SECT_HDR_SIZE
;
r
=
IStream_Read
(
stm
,
&
data
[
SECT_HDR_SIZE
],
sz
,
&
count
);
if
(
SUCCEEDED
(
r
)
&&
count
==
sz
)
{
read_properties_from_data
(
si
->
property
,
idofs
,
section_hdr
.
cProperties
,
data
,
sz
);
}
read_properties_from_data
(
si
->
property
,
data
,
sz
+
SECT_HDR_SIZE
);
else
ERR
(
"failed to read properties %ld %ld
\n
"
,
count
,
sz
);
HeapFree
(
GetProcessHeap
(),
0
,
data
);
return
ret
;
...
...
@@ -479,7 +486,7 @@ UINT WINAPI MsiGetSummaryInformationW( MSIHANDLE hDatabase,
end:
if
(
db
)
msiobj_release
(
&
db
->
hdr
);
msiobj_release
(
&
db
->
hdr
);
return
ret
;
}
...
...
@@ -529,24 +536,20 @@ static UINT get_prop( MSIHANDLE handle, UINT uiProperty, UINT *puiDataType,
{
MSISUMMARYINFO
*
si
;
PROPVARIANT
*
prop
;
UINT
type
;
TRACE
(
"%ld %d %p %p %p %p %p
\n
"
,
handle
,
uiProperty
,
puiDataType
,
piValue
,
pftValue
,
str
,
pcchValueBuf
);
type
=
get_type
(
uiProperty
);
if
(
puiDataType
)
*
puiDataType
=
type
;
si
=
msihandle2msiinfo
(
handle
,
MSIHANDLETYPE_SUMMARYINFO
);
if
(
!
si
)
return
ERROR_INVALID_HANDLE
;
prop
=
&
si
->
property
[
uiProperty
];
if
(
prop
->
vt
!=
type
)
goto
end
;
switch
(
type
)
if
(
puiDataType
)
*
puiDataType
=
prop
->
vt
;
switch
(
prop
->
vt
)
{
case
VT_I2
:
if
(
piValue
)
...
...
@@ -585,7 +588,6 @@ static UINT get_prop( MSIHANDLE handle, UINT uiProperty, UINT *puiDataType,
FIXME
(
"Unknown property variant type
\n
"
);
break
;
}
end:
msiobj_release
(
&
si
->
hdr
);
return
ERROR_SUCCESS
;
}
...
...
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