Zebediah Figura : mshtml: Fix a copy-paste error.

Alexandre Julliard julliard at winehq.org
Mon May 20 15:50:48 CDT 2019


Module: wine
Branch: master
Commit: f8fffe9e86fbadb4af7185297052f9937322a550
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f8fffe9e86fbadb4af7185297052f9937322a550

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Mon May 20 10:33:24 2019 -0500

mshtml: Fix a copy-paste error.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/dispex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/dispex.c b/dlls/mshtml/dispex.c
index e637f13..2033e90 100644
--- a/dlls/mshtml/dispex.c
+++ b/dlls/mshtml/dispex.c
@@ -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++)




More information about the wine-cvs mailing list