[Libreoffice-commits] core.git: extensions/source
Stephan Bergmann
sbergman at redhat.com
Thu Mar 8 12:46:58 UTC 2018
extensions/source/ole/unoobjw.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit a14153316098f415b0bad5056abd9f93dcdf37aa
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Thu Mar 8 12:23:59 2018 +0100
loplugin:cstylecast (clang-cl)
Change-Id: Ia9184268ed734bb0cee94c5eb870d3425bc47ac4
Reviewed-on: https://gerrit.libreoffice.org/50942
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx
index a9d2a4a4cd06..dab94a65385e 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -816,7 +816,7 @@ STDMETHODIMP InterfaceOleWrapper_Impl::Invoke(DISPID dispidMember,
// Pass missing (hopefully optional) parameters as Any().
InvocationInfo aInvocationInfo;
getInvocationInfoForCall(dispidMember, aInvocationInfo);
- if (pdispparams->cArgs < (UINT)aInvocationInfo.aParamTypes.getLength())
+ if (pdispparams->cArgs < sal_uInt32(aInvocationInfo.aParamTypes.getLength()))
{
params.realloc(aInvocationInfo.aParamTypes.getLength());
Any* pParams = params.getArray();
More information about the Libreoffice-commits
mailing list