Eric Pouech : oleaut32: Use correct integral type.

Alexandre Julliard julliard at winehq.org
Tue Feb 1 15:21:34 CST 2022


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

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Tue Feb  1 14:05:27 2022 +0100

oleaut32: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

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

diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c
index 7dcc8d815a3..2a453a1f0e0 100644
--- a/dlls/oleaut32/typelib.c
+++ b/dlls/oleaut32/typelib.c
@@ -9890,7 +9890,7 @@ static DWORD WMSFT_compile_typeinfo_aux(ITypeInfoImpl *info,
         ++memid;
     }
 
-    name = (UINT*)memid;
+    name = (DWORD*)memid;
     for(i = 0; i < info->typeattr.cFuncs; ++i){
         TLBFuncDesc *desc = &info->funcdescs[i];
         if(desc->Name)




More information about the wine-cvs mailing list