winhlp32: Fix parsing system header of win3.0 help file.

This commit is contained in:
Kirill K. Smirnov 2008-08-04 03:50:52 +04:00 committed by Alexandre Julliard
parent c62529a7ae
commit 7377856352
1 changed files with 11 additions and 0 deletions

View File

@ -1886,6 +1886,17 @@ static BOOL HLPFILE_SystemCommands(HLPFILE* hlpfile)
hlpfile->flags = flags;
hlpfile->charset = DEFAULT_CHARSET;
if (hlpfile->version <= 16)
{
char *str = (char*)buf + 0x15;
hlpfile->lpszTitle = HeapAlloc(GetProcessHeap(), 0, strlen(str) + 1);
if (!hlpfile->lpszTitle) return FALSE;
lstrcpy(hlpfile->lpszTitle, str);
WINE_TRACE("Title: %s\n", hlpfile->lpszTitle);
/* Nothing more to parse */
return TRUE;
}
for (ptr = buf + 0x15; ptr + 4 <= end; ptr += GET_USHORT(ptr, 2) + 4)
{
char *str = (char*) ptr + 4;