Skip to content
Snippets Groups Projects
Commit 981d1846 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard
Browse files

ieframe: Fixed reallocation size.

parent 0cae0842
Branches
Tags
No related merge requests found
......@@ -340,7 +340,7 @@ static void update_travellog(DocHost *This)
}else if(This->travellog_size < This->travellog_position+1) {
travellog_entry_t *new_travellog;
new_travellog = heap_realloc(This->travellog, This->travellog_size*2);
new_travellog = heap_realloc(This->travellog, This->travellog_size*2*sizeof(*This->travellog));
if(!new_travellog)
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment