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
32d217d2
Commit
32d217d2
authored
Oct 31, 2011
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 31, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Fix trace formats to match all other files.
parent
da649961
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
parseerror.c
dlls/msxml3/parseerror.c
+6
-5
No files found.
dlls/msxml3/parseerror.c
View file @
32d217d2
...
...
@@ -60,7 +60,9 @@ static HRESULT WINAPI parseError_QueryInterface(
REFIID
riid
,
void
**
ppvObject
)
{
TRACE
(
"(%p)->(%s %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppvObject
);
parse_error_t
*
This
=
impl_from_IXMLDOMParseError
(
iface
);
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IDispatch
)
||
...
...
@@ -85,7 +87,7 @@ static ULONG WINAPI parseError_AddRef(
{
parse_error_t
*
This
=
impl_from_IXMLDOMParseError
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p)
ref now %d
\n
"
,
This
,
ref
);
TRACE
(
"(%p)
->(%d)
\n
"
,
This
,
ref
);
return
ref
;
}
...
...
@@ -93,10 +95,9 @@ static ULONG WINAPI parseError_Release(
IXMLDOMParseError
*
iface
)
{
parse_error_t
*
This
=
impl_from_IXMLDOMParseError
(
iface
);
ULONG
ref
;
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
)
;
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref now %d
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
{
SysFreeString
(
This
->
url
);
...
...
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