Commit f8fffe9e authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

mshtml: Fix a copy-paste error.

parent f8ebb3ac
......@@ -299,7 +299,7 @@ static void add_func_info(dispex_data_t *data, tid_t tid, const FUNCDESC *desc,
if(!info->arg_types)
return;
info->arg_info = heap_alloc_zero(sizeof(*info->arg_info) * info->argc);
if(!info->arg_types)
if(!info->arg_info)
return;
for(i=0; i < info->argc; i++)
......
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