diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 14:12:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 15:06:36 +0000 |
commit | aa0499cefda1f808e6361e400d02a04cd4a0ef65 (patch) | |
tree | 86c30eb0189d12409b3f78dbd99a335e3e7911cb /sal/rtl | |
parent | 9e67149741bf753fd802737701117a095bea846f (diff) |
coverity#982593 experiment with silencing Infinite loop
etc.
Change-Id: I1548d60280ab4f74fe023d026435a05f7865b516
Diffstat (limited to 'sal/rtl')
-rw-r--r-- | sal/rtl/alloc_cache.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sal/rtl/alloc_cache.cxx b/sal/rtl/alloc_cache.cxx index 19591a89870c..be6cd4dadbaa 100644 --- a/sal/rtl/alloc_cache.cxx +++ b/sal/rtl/alloc_cache.cxx @@ -919,12 +919,14 @@ rtl_cache_deactivate ( /* cleanup cpu layer */ if ((mag = cache->m_cpu_curr) != 0) { + // coverity[missing_lock] cache->m_cpu_curr = 0; rtl_cache_magazine_clear (cache, mag); rtl_cache_free (mag_cache, mag); } if ((mag = cache->m_cpu_prev) != 0) { + // coverity[missing_lock] cache->m_cpu_prev = 0; rtl_cache_magazine_clear (cache, mag); rtl_cache_free (mag_cache, mag); |