Skip to content
Snippets Groups Projects
Commit 732f2815 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard
Browse files

ieframe: Initialize new history log entry.


In addition to 41cfc86d.

This fixes another crash when browsing help file that I have here.

Signed-off-by: default avatarDmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: default avatarJacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent e015409e
No related branches found
No related tags found
No related merge requests found
......@@ -469,6 +469,8 @@ static void update_travellog(DocHost *This)
if(This->travellog.loading_pos == -1) {
This->travellog.position++;
This->travellog.log[This->travellog.position].stream = NULL;
This->travellog.log[This->travellog.position].url = NULL;
}else {
This->travellog.position = This->travellog.loading_pos;
This->travellog.loading_pos = -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment