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
6454ec7f
Commit
6454ec7f
authored
Sep 18, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Use wine_dbgstr_rect() to trace a potentially NULL rect struct.
parent
208de163
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
shlview.c
dlls/shell32/shlview.c
+1
-3
No files found.
dlls/shell32/shlview.c
View file @
6454ec7f
...
...
@@ -2095,9 +2095,7 @@ static HRESULT WINAPI IShellView2_fnCreateViewWindow2(IShellView2 *iface,
TRACE
(
"-- psvPrev %p, pfs %p, psbOwner %p, prcView %p
\n
"
,
view_params
->
psvPrev
,
view_params
->
pfs
,
view_params
->
psbOwner
,
view_params
->
prcView
);
TRACE
(
"-- vmode %#x, flags %#x, left %d, top %d, right %d, bottom %d
\n
"
,
view_params
->
pfs
->
ViewMode
,
view_params
->
pfs
->
fFlags
,
view_params
->
prcView
->
left
,
view_params
->
prcView
->
top
,
view_params
->
prcView
->
right
,
view_params
->
prcView
->
bottom
);
TRACE
(
"-- vmode %#x, flags %#x, view %s
\n
"
,
view_params
->
pfs
->
ViewMode
,
view_params
->
pfs
->
fFlags
,
wine_dbgstr_rect
(
view_params
->
prcView
));
if
(
!
view_params
->
psbOwner
)
return
E_UNEXPECTED
;
...
...
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