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
970de7df
Commit
970de7df
authored
Jul 06, 2016
by
Alex Henrie
Committed by
Alexandre Julliard
Jul 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Return E_INVALIDARG from FolderItems functions on null output.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ddf76f6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
shelldispatch.c
dlls/shell32/shelldispatch.c
+9
-0
No files found.
dlls/shell32/shelldispatch.c
View file @
970de7df
...
...
@@ -1060,6 +1060,9 @@ static HRESULT WINAPI FolderItemsImpl_get_Application(FolderItems3 *iface, IDisp
{
FIXME
(
"(%p,%p)
\n
"
,
iface
,
ppid
);
if
(
!
ppid
)
return
E_INVALIDARG
;
return
E_NOTIMPL
;
}
...
...
@@ -1081,6 +1084,9 @@ static HRESULT WINAPI FolderItemsImpl__NewEnum(FolderItems3 *iface, IUnknown **p
{
FIXME
(
"(%p,%p)
\n
"
,
iface
,
ppunk
);
if
(
!
ppunk
)
return
E_INVALIDARG
;
return
E_NOTIMPL
;
}
...
...
@@ -1102,6 +1108,9 @@ static HRESULT WINAPI FolderItemsImpl_get_Verbs(FolderItems3 *iface, FolderItemV
{
FIXME
(
"(%p,%p)
\n
"
,
iface
,
ppfic
);
if
(
!
ppfic
)
return
E_INVALIDARG
;
return
E_NOTIMPL
;
}
...
...
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