From 2d6b33baed25d674f47bc29c8983eacd74cc85df Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 10 May 2014 14:31:18 +0100 Subject: coverity#708240 Uninitialized pointer field Change-Id: I82bb1587d74f7b1f012ff01d0f68ea8cffd16112 --- stoc/source/security/lru_cache.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'stoc') 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 ) { } -- cgit