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
e593c306
Commit
e593c306
authored
Feb 11, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Remove ERR() output that's not really helpful.
parent
747c649d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
9 deletions
+0
-9
compobj.c
dlls/ole32/compobj.c
+0
-9
No files found.
dlls/ole32/compobj.c
View file @
e593c306
...
...
@@ -2378,10 +2378,7 @@ HRESULT WINAPI ProgIDFromCLSID(REFCLSID clsid, LPOLESTR *ppszProgID)
LONG
progidlen
=
0
;
if
(
!
ppszProgID
)
{
ERR
(
"ppszProgId isn't optional
\n
"
);
return
E_INVALIDARG
;
}
*
ppszProgID
=
NULL
;
...
...
@@ -2449,10 +2446,7 @@ HRESULT WINAPI CLSIDFromProgID(LPCOLESTR progid, LPCLSID clsid)
ACTCTX_SECTION_KEYED_DATA
data
;
if
(
!
progid
||
!
clsid
)
{
ERR
(
"neither progid (%p) nor clsid (%p) are optional
\n
"
,
progid
,
clsid
);
return
E_INVALIDARG
;
}
data
.
cbSize
=
sizeof
(
data
);
if
(
FindActCtxSectionStringW
(
0
,
NULL
,
ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION
,
...
...
@@ -2534,10 +2528,7 @@ HRESULT WINAPI CoGetPSClsid(REFIID riid, CLSID *pclsid)
}
if
(
!
pclsid
)
{
ERR
(
"pclsid isn't optional
\n
"
);
return
E_INVALIDARG
;
}
EnterCriticalSection
(
&
apt
->
cs
);
...
...
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