Re: hhctrl.ocx - null pointer bug
18 Jun
2010
18 Jun
'10
11:48 p.m.
Hi Jaroslav, - if (!*caption) caption = info->pCHMInfo->defTitle; + if (!caption) caption = info->pCHMInfo->defTitle; I suspect a better fix would be: + if (!caption || !*caption) caption = info->pCHMInfo->defTitle; That is, either a NULL caption or an empty one results in info->pCHMInfo->defTitle getting used. --Juan
18 Jun
18 Jun
11:56 p.m.
New subject: hhctrl.ocx - null pointer bug
Perhaps. I don't mind as long as it doesn't crash :-) -- Jaroslav Šmíd
5661
Age (days ago)
5661
Last active (days ago)
1 comments
2 participants
participants (2)
-
Jaroslav Šmíd -
Juan Lang