[Libreoffice-commits] core.git: sal/rtl
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Wed Aug 1 14:37:57 UTC 2018
sal/rtl/alloc_cache.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 90950c63fa24f98fa18306610e18f2080b8f0029
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Wed Aug 1 12:36:30 2018 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Wed Aug 1 16:37:35 2018 +0200
Dead assignment
Change-Id: Ia9459d29ebe823a8e08eed0a7418e89b05ed360b
Reviewed-on: https://gerrit.libreoffice.org/58412
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/sal/rtl/alloc_cache.cxx b/sal/rtl/alloc_cache.cxx
index b4d7a0060d39..d1eaf44cd142 100644
--- a/sal/rtl/alloc_cache.cxx
+++ b/sal/rtl/alloc_cache.cxx
@@ -68,7 +68,7 @@ rtl_cache_type * rtl_cache_activate(
}
assert(RTL_MEMORY_ISP2(objalign));
- cache->m_type_size = objsize = RTL_MEMORY_P2ROUNDUP(objsize, objalign);
+ cache->m_type_size = RTL_MEMORY_P2ROUNDUP(objsize, objalign);
cache->m_constructor = constructor;
cache->m_destructor = destructor;
More information about the Libreoffice-commits
mailing list