Commit 981d1846 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ieframe: Fixed reallocation size.

parent 0cae0842
...@@ -340,7 +340,7 @@ static void update_travellog(DocHost *This) ...@@ -340,7 +340,7 @@ static void update_travellog(DocHost *This)
}else if(This->travellog_size < This->travellog_position+1) { }else if(This->travellog_size < This->travellog_position+1) {
travellog_entry_t *new_travellog; 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) if(!new_travellog)
return; return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment