diff options
author | Christian Barth <Christian.Barth@zoho.com> | 2019-10-03 20:22:04 +0200 |
---|---|---|
committer | Michael Stahl <michael.stahl@cib.de> | 2019-10-09 16:25:24 +0200 |
commit | 261fa8cdf4626c9785e0ca4776e44eab4b9222e0 (patch) | |
tree | ca2389706b771e891a553a6b413ab5e567ed60ae /xmlsecurity | |
parent | a73cb32c7285343cbb30b4647e8e7e448eebbb02 (diff) |
tdf#114441 changed some sal_uLong to better fitting types
Change-Id: I114a6b028eb59a1ae38c31bc20439a35643fe972
Reviewed-on: https://gerrit.libreoffice.org/80159
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/helper/xmlsignaturehelper2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/source/helper/xmlsignaturehelper2.cxx b/xmlsecurity/source/helper/xmlsignaturehelper2.cxx index f733f3a6a4c1..1a7a33459572 100644 --- a/xmlsecurity/source/helper/xmlsignaturehelper2.cxx +++ b/xmlsecurity/source/helper/xmlsignaturehelper2.cxx @@ -55,7 +55,7 @@ uno::Reference< io::XInputStream > SAL_CALL UriBindingHelper::getUriBinding( con else { SvFileStream* pStream = new SvFileStream( uri, StreamMode::READ ); - sal_uLong nBytes = pStream->TellEnd(); + sal_uInt64 nBytes = pStream->TellEnd(); SvLockBytesRef xLockBytes = new SvLockBytes( pStream, true ); xInputStream = new utl::OInputStreamHelper( xLockBytes, nBytes ); } |