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
cafb20bb
Commit
cafb20bb
authored
Mar 03, 2010
by
Christian Costa
Committed by
Alexandre Julliard
Mar 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dxof: Turn some TRACEs into WARNs in case of parsing error.
parent
7617cc4b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
d3dxof.c
dlls/d3dxof/d3dxof.c
+4
-4
No files found.
dlls/d3dxof/d3dxof.c
View file @
cafb20bb
...
...
@@ -303,7 +303,7 @@ static HRESULT WINAPI IDirectXFileImpl_CreateEnumObject(IDirectXFile* iface, LPV
{
if
(
!
parse_template
(
&
object
->
buf
))
{
TRACE
(
"Template is not correct
\n
"
);
WARN
(
"Template is not correct
\n
"
);
hr
=
DXFILEERR_BADVALUE
;
goto
error
;
}
...
...
@@ -418,7 +418,7 @@ static HRESULT WINAPI IDirectXFileImpl_RegisterTemplates(IDirectXFile* iface, LP
{
if
(
!
parse_template
(
&
buf
))
{
TRACE
(
"Template is not correct
\n
"
);
WARN
(
"Template is not correct
\n
"
);
return
DXFILEERR_BADVALUE
;
}
else
...
...
@@ -1051,7 +1051,7 @@ static HRESULT WINAPI IDirectXFileEnumObjectImpl_GetNextDataObject(IDirectXFileE
{
if
(
!
parse_template
(
&
This
->
buf
))
{
TRACE
(
"Template is not correct
\n
"
);
WARN
(
"Template is not correct
\n
"
);
hr
=
DXFILEERR_BADVALUE
;
goto
error
;
}
...
...
@@ -1099,7 +1099,7 @@ static HRESULT WINAPI IDirectXFileEnumObjectImpl_GetNextDataObject(IDirectXFileE
if
(
!
parse_object
(
&
This
->
buf
))
{
TRACE
(
"Object is not correct
\n
"
);
WARN
(
"Object is not correct
\n
"
);
hr
=
DXFILEERR_PARSEERROR
;
goto
error
;
}
...
...
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