coverity#708240 Uninitialized pointer field

Change-Id: I82bb1587d74f7b1f012ff01d0f68ea8cffd16112
This commit is contained in:
Caolán McNamara
2014-05-10 14:31:18 +01:00
parent 0b799c7a2d
commit 2d6b33baed

View File

@@ -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 )
{
}