diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-11 12:02:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-12 07:42:25 +0100 |
commit | 5de99031fa31eaf78d92cf5aa8de6cac8f2f8782 (patch) | |
tree | 927f3ca646d53047793be101ff800757a8528853 /tools | |
parent | ef5471959f21ebc4599146d672165513d92d344a (diff) |
sal_IntPtr->sal_uInt32 in INetMIMEMessageStream
Change-Id: I5c57b0bf28a395a0617d1c16ccaeff759915974e
Reviewed-on: https://gerrit.libreoffice.org/46225
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/inet/inetstrm.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tools/source/inet/inetstrm.cxx b/tools/source/inet/inetstrm.cxx index 73b3afc1e5ac..7949b5f94108 100644 --- a/tools/source/inet/inetstrm.cxx +++ b/tools/source/inet/inetstrm.cxx @@ -28,11 +28,11 @@ #include <tools/inetmsg.hxx> #include <tools/inetstrm.hxx> -int INetMIMEMessageStream::GetHeaderLine(sal_Char* pData, sal_uIntPtr nSize) +int INetMIMEMessageStream::GetHeaderLine(sal_Char* pData, sal_uInt32 nSize) { sal_Char* pWBuf = pData; - sal_uIntPtr i, n; + sal_uInt32 i, n; if (maMsgBuffer.Tell() == 0) { @@ -71,7 +71,7 @@ int INetMIMEMessageStream::GetHeaderLine(sal_Char* pData, sal_uIntPtr nSize) return (pWBuf - pData); } -int INetMIMEMessageStream::GetBodyLine(sal_Char* pData, sal_uIntPtr nSize) +int INetMIMEMessageStream::GetBodyLine(sal_Char* pData, sal_uInt32 nSize) { sal_Char* pWBuf = pData; sal_Char* pWEnd = pData + nSize; @@ -81,14 +81,14 @@ int INetMIMEMessageStream::GetBodyLine(sal_Char* pData, sal_uIntPtr nSize) if (pMsgStrm == nullptr) pMsgStrm = new SvStream (pSourceMsg->GetDocumentLB()); - sal_uIntPtr nRead = pMsgStrm->ReadBytes(pWBuf, (pWEnd - pWBuf)); + sal_uInt32 nRead = pMsgStrm->ReadBytes(pWBuf, (pWEnd - pWBuf)); pWBuf += nRead; } return (pWBuf - pData); } -int INetMIMEMessageStream::GetMsgLine(sal_Char* pData, sal_uIntPtr nSize) +int INetMIMEMessageStream::GetMsgLine(sal_Char* pData, sal_uInt32 nSize) { // Check for header or body. if (!bHeaderGenerated) @@ -252,7 +252,7 @@ INetMIMEMessageStream::~INetMIMEMessageStream() delete pMsgStrm; } -int INetMIMEMessageStream::Read(sal_Char* pData, sal_uIntPtr nSize) +int INetMIMEMessageStream::Read(sal_Char* pData, sal_uInt32 nSize) { sal_Char* pWBuf = pData; sal_Char* pWEnd = pData + nSize; @@ -260,13 +260,13 @@ int INetMIMEMessageStream::Read(sal_Char* pData, sal_uIntPtr nSize) while (pWBuf < pWEnd) { // Caller's buffer not yet filled. - sal_uIntPtr n = pRead - pWrite; + sal_uInt32 n = pRead - pWrite; if (n > 0) { // Bytes still in buffer. - sal_uIntPtr m = pWEnd - pWBuf; + sal_uInt32 m = pWEnd - pWBuf; if (m < n) n = m; - for (sal_uIntPtr i = 0; i < n; i++) *pWBuf++ = *pWrite++; + for (sal_uInt32 i = 0; i < n; i++) *pWBuf++ = *pWrite++; } else { |