Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
aedcc11e
Commit
aedcc11e
authored
Oct 03, 2012
by
Erich Hoover
Committed by
Alexandre Julliard
Oct 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hhctrl.ocx: Fix removing a window from the help list when window creation fails.
parent
3ce21826
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
help.c
dlls/hhctrl.ocx/help.c
+1
-5
No files found.
dlls/hhctrl.ocx/help.c
View file @
aedcc11e
...
...
@@ -1825,13 +1825,12 @@ void ReleaseHelpViewer(HHInfo *info)
HHInfo
*
CreateHelpViewer
(
HHInfo
*
info
,
LPCWSTR
filename
,
HWND
caller
)
{
BOOL
add_to_window_list
=
FALSE
;
int
i
;
if
(
!
info
)
{
info
=
heap_alloc_zero
(
sizeof
(
HHInfo
));
add_to_window_list
=
TRUE
;
list_add_tail
(
&
window_list
,
&
info
->
entry
)
;
}
/* Set the invalid tab ID (-1) as the default value for all
...
...
@@ -1859,9 +1858,6 @@ HHInfo *CreateHelpViewer(HHInfo *info, LPCWSTR filename, HWND caller)
return
NULL
;
}
if
(
add_to_window_list
)
list_add_tail
(
&
window_list
,
&
info
->
entry
);
return
info
;
}
...
...
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