Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
6a15ac7f
Commit
6a15ac7f
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
49ff182f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
stg_prop.c
dlls/ole32/stg_prop.c
+3
-1
stg_prop.c
dlls/ole32/tests/stg_prop.c
+0
-0
No files found.
dlls/ole32/stg_prop.c
View file @
6a15ac7f
...
...
@@ -307,7 +307,9 @@ static HRESULT WINAPI IPropertyStorage_fnReadMultiple(
TRACE
(
"(%p, %ld, %p, %p)
\n
"
,
iface
,
cpspec
,
rgpspec
,
rgpropvar
);
if
(
cpspec
&&
(
!
rgpspec
||
!
rgpropvar
))
if
(
!
cpspec
)
return
S_FALSE
;
if
(
!
rgpspec
||
!
rgpropvar
)
return
E_INVALIDARG
;
EnterCriticalSection
(
&
This
->
cs
);
for
(
i
=
0
;
i
<
cpspec
;
i
++
)
...
...
dlls/ole32/tests/stg_prop.c
View file @
6a15ac7f
This diff is collapsed.
Click to expand it.
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