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
5b7bd760
Commit
5b7bd760
authored
Jun 26, 2010
by
Jaroslav Šmíd
Committed by
Alexandre Julliard
Jun 28, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hhctrl.ocx: Make sure pszCaption and pszFile are never 0.
parent
3ced7b8f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
chm.c
dlls/hhctrl.ocx/chm.c
+2
-2
No files found.
dlls/hhctrl.ocx/chm.c
View file @
5b7bd760
...
@@ -238,11 +238,11 @@ BOOL LoadWinTypeFromCHM(HHInfo *info)
...
@@ -238,11 +238,11 @@ BOOL LoadWinTypeFromCHM(HHInfo *info)
info
->
WinType
.
pszIndex
=
strdupW
(
null
);
info
->
WinType
.
pszIndex
=
strdupW
(
null
);
info
->
WinType
.
fsValidMembers
=
0
;
info
->
WinType
.
fsValidMembers
=
0
;
info
->
WinType
.
fsWinProperties
=
HHWIN_PROP_TRI_PANE
;
info
->
WinType
.
fsWinProperties
=
HHWIN_PROP_TRI_PANE
;
info
->
WinType
.
pszCaption
=
strdupW
(
info
->
pCHMInfo
->
defTitle
);
info
->
WinType
.
pszCaption
=
strdupW
(
info
->
pCHMInfo
->
defTitle
?
info
->
pCHMInfo
->
defTitle
:
null
);
info
->
WinType
.
dwStyles
=
WS_POPUP
;
info
->
WinType
.
dwStyles
=
WS_POPUP
;
info
->
WinType
.
dwExStyles
=
0
;
info
->
WinType
.
dwExStyles
=
0
;
info
->
WinType
.
nShowState
=
SW_SHOW
;
info
->
WinType
.
nShowState
=
SW_SHOW
;
info
->
WinType
.
pszFile
=
strdupW
(
info
->
pCHMInfo
->
defTopic
);
info
->
WinType
.
pszFile
=
strdupW
(
info
->
pCHMInfo
->
defTopic
?
info
->
pCHMInfo
->
defTopic
:
null
);
info
->
WinType
.
curNavType
=
HHWIN_NAVTYPE_TOC
;
info
->
WinType
.
curNavType
=
HHWIN_NAVTYPE_TOC
;
return
TRUE
;
return
TRUE
;
}
}
...
...
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