Nikolay Sivov : oleaut32: Added PSTypeComp to DllGetClassObject.

Alexandre Julliard julliard at winehq.org
Fri Aug 26 10:18:11 CDT 2016


Module: wine
Branch: master
Commit: 9d1876f4621f50f803d5ef629710bf4f64cfdd0f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9d1876f4621f50f803d5ef629710bf4f64cfdd0f

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Thu Aug 25 20:57:17 2016 +0300

oleaut32: Added PSTypeComp to DllGetClassObject.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/oleaut32/oleaut.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/oleaut32/oleaut.c b/dlls/oleaut32/oleaut.c
index 742e63f..f9734e6 100644
--- a/dlls/oleaut32/oleaut.c
+++ b/dlls/oleaut32/oleaut.c
@@ -871,7 +871,8 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
 	    return S_OK;
 	/*FALLTHROUGH*/
     }
-    if (IsEqualCLSID(rclsid, &CLSID_PSTypeInfo) ||
+    if (IsEqualCLSID(rclsid, &CLSID_PSTypeComp) ||
+        IsEqualCLSID(rclsid, &CLSID_PSTypeInfo) ||
         IsEqualCLSID(rclsid, &CLSID_PSTypeLib) ||
         IsEqualCLSID(rclsid, &CLSID_PSDispatch) ||
         IsEqualCLSID(rclsid, &CLSID_PSEnumVariant))




More information about the wine-cvs mailing list