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
d7d7e3bc
Commit
d7d7e3bc
authored
Dec 15, 2002
by
Rolf Kalbermatter
Committed by
Alexandre Julliard
Dec 15, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix crash when constructing ANSI interface pointer to IExtractIcon,
found by Uwe Bonnes. Add some traces to the constructors.
parent
064c48a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
folders.c
dlls/shell32/folders.c
+6
-2
No files found.
dlls/shell32/folders.c
View file @
d7d7e3bc
...
...
@@ -62,6 +62,8 @@ static struct ICOM_VTABLE(IPersistFile) pfvt;
IExtractIconW
*
IExtractIconW_Constructor
(
LPCITEMIDLIST
pidl
)
{
IExtractIconWImpl
*
ei
;
TRACE
(
"%p
\n
"
,
pidl
);
ei
=
(
IExtractIconWImpl
*
)
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
IExtractIconWImpl
));
ei
->
ref
=
1
;
...
...
@@ -285,8 +287,10 @@ static struct ICOM_VTABLE(IExtractIconW) eivt =
IExtractIconA
*
IExtractIconA_Constructor
(
LPCITEMIDLIST
pidl
)
{
ICOM_THIS
(
IExtractIconWImpl
,
IExtractIconW_Constructor
(
pidl
));
return
(
IExtractIconA
*
)
This
->
lpvtblExtractIconA
;
IExtractIconA
*
eia
=
(
IExtractIconA
*
)
&
This
->
lpvtblExtractIconA
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
eia
);
return
eia
;
}
/**************************************************************************
* IExtractIconA_QueryInterface
...
...
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