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
df219f87
Commit
df219f87
authored
Nov 11, 2010
by
Andrew Bogott
Committed by
Alexandre Julliard
Dec 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Revert "ole32: Only read known format ids when attempting to read summary information.".
This reverts commit
c94b2687
.
parent
3eef4e11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
7 deletions
+1
-7
stg_prop.c
dlls/ole32/stg_prop.c
+0
-7
stg_prop.c
dlls/ole32/tests/stg_prop.c
+1
-0
No files found.
dlls/ole32/stg_prop.c
View file @
df219f87
...
...
@@ -1314,13 +1314,6 @@ static HRESULT PropertyStorage_ReadFromStream(PropertyStorage_impl *This)
hr
=
PropertyStorage_ReadFmtIdOffsetFromStream
(
This
->
stm
,
&
fmtOffset
);
if
(
FAILED
(
hr
))
goto
end
;
if
(
!
IsEqualGUID
(
&
fmtOffset
.
fmtid
,
&
FMTID_DocSummaryInformation
)
&&
!
IsEqualGUID
(
&
fmtOffset
.
fmtid
,
&
FMTID_SummaryInformation
))
{
WARN
(
"not reading unknown fmtid %s
\n
"
,
debugstr_guid
(
&
fmtOffset
.
fmtid
));
hr
=
S_FALSE
;
goto
end
;
}
if
(
fmtOffset
.
dwOffset
>
stat
.
cbSize
.
u
.
LowPart
)
{
WARN
(
"invalid offset %d (stream length is %d)
\n
"
,
fmtOffset
.
dwOffset
,
...
...
dlls/ole32/tests/stg_prop.c
View file @
df219f87
...
...
@@ -333,6 +333,7 @@ static void testProps(void)
hr
=
IPropertySetStorage_Open
(
propSetStorage
,
&
anyOldGuid
,
STGM_READWRITE
|
STGM_SHARE_EXCLUSIVE
,
&
propertyStorage
);
todo_wine
ok
(
hr
==
S_OK
,
"IPropertySetStorage_Open failed: 0x%08x
\n
"
,
hr
);
spec
.
ulKind
=
PRSPEC_PROPID
;
...
...
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