diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2023-08-09 16:38:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-08-09 20:06:54 +0200 |
commit | da54fbce1c9101925059b980a0d9fe441bf0461f (patch) | |
tree | 1dac07149177ce27834f8293246fdc944d397061 /sot/source/sdstor/stgstrms.cxx | |
parent | 55c0d6caec990ed2d5433251bfed9c51d1207e47 (diff) |
use sal_uInt64 when dealing with stream position
Change-Id: I2869e115941b3e1f52911d58d54ec1b2831d0524
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155524
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sot/source/sdstor/stgstrms.cxx')
-rw-r--r-- | sot/source/sdstor/stgstrms.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/stgstrms.cxx b/sot/source/sdstor/stgstrms.cxx index b58c2a7922d9..61682ead8ab0 100644 --- a/sot/source/sdstor/stgstrms.cxx +++ b/sot/source/sdstor/stgstrms.cxx @@ -1300,8 +1300,8 @@ std::size_t StgTmpStrm::GetData( void* pData, std::size_t n ) std::size_t StgTmpStrm::PutData( const void* pData, std::size_t n ) { - sal_uInt32 nCur = Tell(); - sal_uInt32 nNew = nCur + n; + sal_uInt64 nCur = Tell(); + sal_uInt64 nNew = nCur + n; if( nNew > THRESHOLD && !m_pStrm ) { SetSize( nNew ); |