summaryrefslogtreecommitdiffstats
path: root/svl
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2019-04-07 16:00:31 +0100
committerMike Kaganski <mike.kaganski@collabora.com>2019-04-08 05:32:56 +0200
commitf3fc127dc007f32355859ae4fc7d34916c500a18 (patch)
tree799ee5af2c1a31c6c2243444caa932a6b2520e1b /svl
parenttdf#124200 calc add icon for DefaultCellStyle (diff)
downloadcore-f3fc127dc007f32355859ae4fc7d34916c500a18.tar.gz
core-f3fc127dc007f32355859ae4fc7d34916c500a18.zip
Use osl_atomic_increment/osl_atomic_decrement to change m_refCount
Change-Id: Ia24441d3671102fdeeb797547396c25ee2a6ffd3 Reviewed-on: https://gerrit.libreoffice.org/70382 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/fsstor/fsstorage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/fsstor/fsstorage.cxx b/svl/source/fsstor/fsstorage.cxx
index c1727b93d3cd..54b09af60142 100644
--- a/svl/source/fsstor/fsstorage.cxx
+++ b/svl/source/fsstor/fsstorage.cxx
@@ -102,7 +102,7 @@ FSStorage::FSStorage( const ::ucbhelper::Content& aContent,
FSStorage::~FSStorage()
{
::osl::MutexGuard aGuard( m_aMutex );
- m_refCount++; // to call dispose
+ osl_atomic_increment(&m_refCount); // to call dispose
try {
dispose();
}