From: Bernhard Übelacker <bernhardu(a)mailbox.org> --- dlls/ieframe/dochost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ieframe/dochost.c b/dlls/ieframe/dochost.c index 9d943594614..823cd8aba2d 100644 --- a/dlls/ieframe/dochost.c +++ b/dlls/ieframe/dochost.c @@ -439,7 +439,7 @@ static void update_travellog(DocHost *This) return; This->travellog.size = 4; - }else if(This->travellog.size < This->travellog.position+1) { + }else if(This->travellog.size <= This->travellog.position+1) { travellog_entry_t *new_travellog; new_travellog = realloc(This->travellog.log, This->travellog.size * 2 * sizeof(*This->travellog.log)); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7544