Re: hhctrl.ocx - null pointer bug
June 18, 2010
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
June 2010
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
5760
Age (days ago)
5760
Last active (days ago)
1 comments
2 participants
participants (2)
-
Jaroslav Šmíd -
Juan Lang