summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-14 15:56:12 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-14 15:58:26 +0000
commita5cbf154df2e8d77f4971f5dafa76e9f8fcc9ca7 (patch)
tree0c864890d0c77eff58eb27ae7f451e4fb6310a5d /stoc
parent3dd8bab3d07a35e2db33adbcdf25dcf80f46d3cd (diff)
coverity#708240 Uninitialized pointer field
Change-Id: I127cfc84412984e9c190f3e5b2e37cf76ebf82f1
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/security/lru_cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/stoc/source/security/lru_cache.h b/stoc/source/security/lru_cache.h
index 5033113b1744..56f4710b48a4 100644
--- a/stoc/source/security/lru_cache.h
+++ b/stoc/source/security/lru_cache.h
@@ -127,6 +127,7 @@ inline lru_cache< t_key, t_val, t_hashKey, t_equalKey >::lru_cache(
::std::size_t size ) SAL_THROW(())
: m_size( 0 )
, m_block( 0 )
+ , m_tail( 0 )
{
setSize( size );
}