diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 14:31:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 21:12:59 +0100 |
commit | 2d6b33baed25d674f47bc29c8983eacd74cc85df (patch) | |
tree | 31dcc0e159d85b8691da9bfeb9e97b9a61798e29 /stoc | |
parent | 0b799c7a2dc25702be6c1acde750b99d7c2ff3d3 (diff) |
coverity#708240 Uninitialized pointer field
Change-Id: I82bb1587d74f7b1f012ff01d0f68ea8cffd16112
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/security/lru_cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stoc/source/security/lru_cache.h b/stoc/source/security/lru_cache.h index 56f4710b48a4..70f2227f3f1b 100644 --- a/stoc/source/security/lru_cache.h +++ b/stoc/source/security/lru_cache.h @@ -136,6 +136,8 @@ template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKe inline lru_cache< t_key, t_val, t_hashKey, t_equalKey >::lru_cache() SAL_THROW(()) : m_size( 0 ) , m_block( 0 ) + , m_head( 0 ) + , m_tail( 0 ) { } |