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
198f1e2f
Commit
198f1e2f
authored
Jan 04, 2002
by
Sander van Leeuwen
Committed by
Alexandre Julliard
Jan 04, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed calls with wrong pointer: COMCTL32_Free(&lpttsi) should be
COMCTL32_Free(lpttsi).
parent
500c201b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
tooltips.c
dlls/comctl32/tooltips.c
+6
-6
No files found.
dlls/comctl32/tooltips.c
View file @
198f1e2f
...
...
@@ -900,7 +900,7 @@ TOOLTIPS_DelToolA (HWND hwnd, WPARAM wParam, LPARAM lParam)
SetWindowLongA
((
HWND
)
toolPtr
->
uId
,
GWL_WNDPROC
,
(
LONG
)
lpttsi
->
wpOrigProc
);
RemovePropA
((
HWND
)
toolPtr
->
uId
,
COMCTL32_aSubclass
);
COMCTL32_Free
(
&
lpttsi
);
COMCTL32_Free
(
lpttsi
);
}
else
ERR
(
"Invalid data handle!
\n
"
);
...
...
@@ -913,7 +913,7 @@ TOOLTIPS_DelToolA (HWND hwnd, WPARAM wParam, LPARAM lParam)
SetWindowLongA
((
HWND
)
toolPtr
->
hwnd
,
GWL_WNDPROC
,
(
LONG
)
lpttsi
->
wpOrigProc
);
RemovePropA
((
HWND
)
toolPtr
->
hwnd
,
COMCTL32_aSubclass
);
COMCTL32_Free
(
&
lpttsi
);
COMCTL32_Free
(
lpttsi
);
}
else
lpttsi
->
uRefCount
--
;
...
...
@@ -997,7 +997,7 @@ TOOLTIPS_DelToolW (HWND hwnd, WPARAM wParam, LPARAM lParam)
SetWindowLongA
((
HWND
)
toolPtr
->
uId
,
GWL_WNDPROC
,
(
LONG
)
lpttsi
->
wpOrigProc
);
RemovePropA
((
HWND
)
toolPtr
->
uId
,
COMCTL32_aSubclass
);
COMCTL32_Free
(
&
lpttsi
);
COMCTL32_Free
(
lpttsi
);
}
else
ERR
(
"Invalid data handle!
\n
"
);
...
...
@@ -1010,7 +1010,7 @@ TOOLTIPS_DelToolW (HWND hwnd, WPARAM wParam, LPARAM lParam)
SetWindowLongA
((
HWND
)
toolPtr
->
hwnd
,
GWL_WNDPROC
,
(
LONG
)
lpttsi
->
wpOrigProc
);
RemovePropA
((
HWND
)
toolPtr
->
hwnd
,
COMCTL32_aSubclass
);
COMCTL32_Free
(
&
lpttsi
);
COMCTL32_Free
(
lpttsi
);
}
else
lpttsi
->
uRefCount
--
;
...
...
@@ -2047,7 +2047,7 @@ TOOLTIPS_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
SetWindowLongA
((
HWND
)
toolPtr
->
uId
,
GWL_WNDPROC
,
(
LONG
)
lpttsi
->
wpOrigProc
);
RemovePropA
((
HWND
)
toolPtr
->
uId
,
COMCTL32_aSubclass
);
COMCTL32_Free
(
&
lpttsi
);
COMCTL32_Free
(
lpttsi
);
}
}
else
{
...
...
@@ -2056,7 +2056,7 @@ TOOLTIPS_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
SetWindowLongA
((
HWND
)
toolPtr
->
hwnd
,
GWL_WNDPROC
,
(
LONG
)
lpttsi
->
wpOrigProc
);
RemovePropA
((
HWND
)
toolPtr
->
hwnd
,
COMCTL32_aSubclass
);
COMCTL32_Free
(
&
lpttsi
);
COMCTL32_Free
(
lpttsi
);
}
}
}
...
...
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