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
7f891787
Commit
7f891787
authored
Jul 12, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Only return S_FALSE in IPropertyStorage::ReadMultiple if a property was not found.
parent
704dffcb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
stg_prop.c
dlls/ole32/stg_prop.c
+3
-1
No files found.
dlls/ole32/stg_prop.c
View file @
7f891787
...
...
@@ -303,7 +303,7 @@ static HRESULT WINAPI IPropertyStorage_fnReadMultiple(
PROPVARIANT
rgpropvar
[])
{
PropertyStorage_impl
*
This
=
(
PropertyStorage_impl
*
)
iface
;
HRESULT
hr
=
S_
FALSE
;
HRESULT
hr
=
S_
OK
;
ULONG
i
;
TRACE
(
"(%p, %ld, %p, %p)
\n
"
,
iface
,
cpspec
,
rgpspec
,
rgpropvar
);
...
...
@@ -344,6 +344,8 @@ static HRESULT WINAPI IPropertyStorage_fnReadMultiple(
if
(
prop
)
PropertyStorage_PropVariantCopy
(
&
rgpropvar
[
i
],
prop
,
GetACP
(),
This
->
codePage
);
else
hr
=
S_FALSE
;
}
}
}
...
...
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